diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-06-18 14:37:32 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2008-06-18 14:37:32 +0000 |
commit | 2da9f35744defb7cf4e9102217207a2e0c24102a (patch) | |
tree | 2683a4eda3e3a506bc4104c57acffd7222921c7b /TAO | |
parent | cfae016e31513eab0a9c261f47780911f6974af0 (diff) | |
download | ATCD-2da9f35744defb7cf4e9102217207a2e0c24102a.tar.gz |
ChangeLogTag: Wed Jun 18 14:39:38 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/tests/Bug_2494_Regression/client.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index f81f94894f9..a9c3427ddc5 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Wed Jun 18 14:39:38 UTC 2008 Chad Elliott <elliott_c@ociweb.com> + + * tests/Bug_2494_Regression/client.cpp: + + Use .in() on a CORBA::String_var to avoid warnings from older gcc + compilers. + Wed Jun 18 14:15:04 UTC 2008 Chad Elliott <elliott_c@ociweb.com> * examples/Load_Balancing/Load_Balancer_i.cpp: diff --git a/TAO/tests/Bug_2494_Regression/client.cpp b/TAO/tests/Bug_2494_Regression/client.cpp index e150afec59c..b26b68abaff 100644 --- a/TAO/tests/Bug_2494_Regression/client.cpp +++ b/TAO/tests/Bug_2494_Regression/client.cpp @@ -81,7 +81,7 @@ struct Worker : ACE_Task_Base try { CORBA::String_var ret = srv_->test_method (str.in ()); - if (0 != ACE_OS::strcmp (str, ret.in ())) return 1; + if (0 != ACE_OS::strcmp (str.in (), ret.in ())) return 1; } catch (CORBA::Exception& ex) { |