sessiond: propagate the use of ltt_session::locked_ref
[lttng-tools.git] / src / common / exception.cpp
index 50520c55cfd177eff7e8116f500b91438550ae54..4375f815931910f4a5bc9a919db8e89875c30c27 100644 (file)
@@ -21,8 +21,7 @@ lttng::ctl::error::error(const std::string& msg,
 lttng::posix_error::posix_error(const std::string& msg,
                                unsigned int errno_code,
                                const lttng::source_location& location) :
-       std::system_error(errno_code, std::generic_category()),
-       lttng::runtime_error(msg, location)
+       std::system_error(errno_code, std::generic_category()), lttng::runtime_error(msg, location)
 {
 }
 
@@ -33,8 +32,8 @@ lttng::runtime_error::runtime_error(const std::string& msg,
 }
 
 lttng::allocation_failure::allocation_failure(const std::string& msg,
-std::size_t allocation_size_,
-                                           const lttng::source_location& location) :
+                                             std::size_t allocation_size_,
+                                             const lttng::source_location& location) :
        lttng::runtime_error(msg, location), allocation_size(allocation_size_)
 {
 }
This page took 0.023201 seconds and 4 git commands to generate.