summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-08 20:59:06 +0100
committerGitHub <noreply@github.com>2021-03-08 20:59:06 +0100
commit199259c5d2d5f4a6550382a683f5d54ac482fcd1 (patch)
tree6792423092c40e0e26f9b6ed932706b4a18fcfc7 /TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp
parenta2239fcbf8a7eabce628ca0841dc1eaa69a68b3d (diff)
parent0ef8b2250c1dfad5ad5361de7e92a289ead06733 (diff)
downloadATCD-199259c5d2d5f4a6550382a683f5d54ac482fcd1.tar.gz
Merge pull request #1444 from jwillemsen/jwi-stdstring
Use std string operation instead of ACE_OS
Diffstat (limited to 'TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp')
-rw-r--r--TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp b/TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp
index 83f28c3add9..47d0eaacbd3 100644
--- a/TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp
+++ b/TAO/tao/AnyTypeCode/String_TypeCode_Static.cpp
@@ -46,8 +46,7 @@ TAO::TypeCode::String<TAO::Null_RefCount_Policy>::equal_i (
CORBA::Boolean
TAO::TypeCode::String<TAO::Null_RefCount_Policy>::equivalent_i (
- CORBA::TypeCode_ptr tc
- ) const
+ CORBA::TypeCode_ptr tc) const
{
// Since TCKind comparisons must be performed before equal_i() is
// called, we can also call it to determine equivalence of
@@ -56,8 +55,7 @@ TAO::TypeCode::String<TAO::Null_RefCount_Policy>::equivalent_i (
}
CORBA::TypeCode_ptr
-TAO::TypeCode::String<TAO::Null_RefCount_Policy>::get_compact_typecode_i (
- ) const
+TAO::TypeCode::String<TAO::Null_RefCount_Policy>::get_compact_typecode_i () const
{
// Already compact since tk_string and tk_wstring TypeCodes have no
// name or member names, meaning that we can simply call
@@ -70,8 +68,7 @@ TAO::TypeCode::String<TAO::Null_RefCount_Policy>::get_compact_typecode_i (
}
CORBA::ULong
-TAO::TypeCode::String<TAO::Null_RefCount_Policy>::length_i (
- ) const
+TAO::TypeCode::String<TAO::Null_RefCount_Policy>::length_i () const
{
return this->length_;
}