summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-12-14 11:15:59 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-12-14 11:15:59 +0100
commit00ba6104ccbe84a2782d03c5a69baa431e877b59 (patch)
tree60eb078d83d3b11aece55d54276dd9530c5aa1c3 /TAO
parent942a6dacf28d97f95cea8efcf6e4d052253392c9 (diff)
downloadATCD-00ba6104ccbe84a2782d03c5a69baa431e877b59.tar.gz
Add back Properties_Encoder constructor, looks MinGW doesn't like the default here
* TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp: * TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp7
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h2
2 files changed, 6 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp
index 67beddbbae5..6aa0a31d5fe 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.cpp
@@ -16,6 +16,10 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+TAO_PG::Properties_Encoder::Properties_Encoder ()
+{
+}
+
void TAO_PG::Properties_Encoder::add (
const char * name,
const PortableGroup::Value & value)
@@ -24,8 +28,7 @@ void TAO_PG::Properties_Encoder::add (
values_.push_back(nv);
}
-void TAO_PG::Properties_Encoder::encode (
- PortableGroup::Properties * property_set) const
+void TAO_PG::Properties_Encoder::encode (PortableGroup::Properties * property_set) const
{
ACE_ASSERT (property_set != 0);
CORBA::ULong const count = static_cast<CORBA::ULong> (values_.size());
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h
index b141599f443..d22360e43a9 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Encoder.h
@@ -61,7 +61,7 @@ namespace TAO_PG
/**
* Construct an empty set of properties.
*/
- Properties_Encoder () = default;
+ Properties_Encoder ();
/// standard destructor
~Properties_Encoder () = default;