X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fexception.hpp;h=1efd80359654bb34de8af78708a131cd8b194db2;hb=20f5a9aeb6d1128823cc87023e1dada534baa1af;hp=30a40347050e8839c210e5bb461540f41186a92f;hpb=5ba02fffe2521809056a0ed611553823e2c7ad11;p=lttng-tools.git diff --git a/src/common/exception.hpp b/src/common/exception.hpp index 30a403470..1efd80359 100644 --- a/src/common/exception.hpp +++ b/src/common/exception.hpp @@ -54,10 +54,14 @@ public: const char *file_name, const char *function_name, unsigned int line_number); - lttng_error_code get_code() const; + + lttng_error_code code() const noexcept + { + return _error_code; + } private: - lttng_error_code _error_code; + const lttng_error_code _error_code; }; } /* namespace ctl */