summaryrefslogtreecommitdiff
path: root/ACE/ace/Monitor_Point_Registry.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-09-28 11:06:02 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-09-28 11:06:02 +0200
commitda89a0cbd85364e47d1387a5be0cbb59624ec74d (patch)
tree64e5865679c264800ec186736b3a87317566cb4d /ACE/ace/Monitor_Point_Registry.h
parent3e4ebe5de44b75f77ffff3929546d0e9aba94941 (diff)
downloadATCD-da89a0cbd85364e47d1387a5be0cbb59624ec74d.tar.gz
Use default/uniform initialization
* ACE/ace/Map_Manager.h: * ACE/ace/Map_Manager.inl: * ACE/ace/Map_T.cpp: * ACE/ace/Map_T.h: * ACE/ace/Map_T.inl: * ACE/ace/Monitor_Control_Types.cpp: * ACE/ace/Monitor_Control_Types.h: * ACE/ace/Monitor_Point_Registry.cpp: * ACE/ace/Monitor_Point_Registry.h: * ACE/ace/Node.cpp:
Diffstat (limited to 'ACE/ace/Monitor_Point_Registry.h')
-rw-r--r--ACE/ace/Monitor_Point_Registry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Monitor_Point_Registry.h b/ACE/ace/Monitor_Point_Registry.h
index e6cf87129f6..921804b8071 100644
--- a/ACE/ace/Monitor_Point_Registry.h
+++ b/ACE/ace/Monitor_Point_Registry.h
@@ -72,7 +72,7 @@ namespace ACE
private:
/// Prevent that users can make an instance.
- Monitor_Point_Registry ();
+ Monitor_Point_Registry () = default;
/// Underlying container for the registry.
typedef ACE_Hash_Map_Manager<ACE_CString,
@@ -84,7 +84,7 @@ namespace ACE
/// Since we're accessed as a singleton, we can keep track of
/// dispensing unique ids for constraints.
- long constraint_id_;
+ long constraint_id_ {};
};
}
}