diff options
Diffstat (limited to 'TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp')
-rw-r--r-- | TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp b/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp index da5c2832189..2ceb5662238 100644 --- a/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp +++ b/TAO/tests/Bug_2289_Regression/MyInterfaceImpl.cpp @@ -4,7 +4,7 @@ #include "MyInterfaceImpl.h" -const char* +const char* MyInterfaceImpl::my_string = "a string"; MyInterfaceImpl::MyInterfaceImpl (CORBA::ORB_ptr orb) @@ -12,7 +12,7 @@ MyInterfaceImpl::MyInterfaceImpl (CORBA::ORB_ptr orb) { } CORBA::Boolean -MyInterfaceImpl::myMethod (const char* mystring ACE_ENV_ARG_DECL) +MyInterfaceImpl::myMethod (const char* mystring) ACE_THROW_SPEC ((CORBA::SystemException)) { return mystring == my_string; |