aboutsummaryrefslogtreecommitdiff
path: root/src/common/utils/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/utils/Object.h')
-rw-r--r--src/common/utils/Object.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/utils/Object.h b/src/common/utils/Object.h
index 6f56f77d3c..1f194737d4 100644
--- a/src/common/utils/Object.h
+++ b/src/common/utils/Object.h
@@ -52,8 +52,9 @@ struct Header
* @param[in] type_ Object identification type
* @param[in] ctx_ Context to reference
*/
- Header(ObjectType type_, IContext *ctx_)
- : type(type_), ctx(ctx_)
+ Header(ObjectType type_, IContext *ctx_) noexcept
+ : type(type_),
+ ctx(ctx_)
{
}