aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/memory/system_property.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/memory/system_property.h')
-rw-r--r--src/profiling/memory/system_property.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profiling/memory/system_property.h b/src/profiling/memory/system_property.h
index 2b1e32fc5..38aa35ea9 100644
--- a/src/profiling/memory/system_property.h
+++ b/src/profiling/memory/system_property.h
@@ -45,12 +45,12 @@ class SystemProperties {
Handle(const Handle&) = delete;
Handle& operator=(const Handle&) = delete;
- Handle(Handle&&) noexcept;
- Handle& operator=(Handle&&) noexcept;
+ Handle(Handle&&);
+ Handle& operator=(Handle&&);
friend class SystemProperties;
~Handle();
- explicit operator bool();
+ operator bool();
private:
explicit Handle(SystemProperties* system_properties, std::string property);