diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-09-28 12:35:17 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-09-28 12:35:17 +0000 |
commit | 28f9142203e2681ad5a3a47fa223d0906928bd87 (patch) | |
tree | 6149b6fdb9312e4cff93e6dcda87095290b176cb /TAO/tests | |
parent | 030b7ce78ce38a3c24fde8519df99d20b93ddf31 (diff) | |
download | ATCD-28f9142203e2681ad5a3a47fa223d0906928bd87.tar.gz |
Wed Sep 28 12:34:31 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3683_Regression/Echo_i.h:
Remove workaround
* tests/IDL_Test/typedef.idl:
* tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h:
Layout changes
Diffstat (limited to 'TAO/tests')
-rw-r--r-- | TAO/tests/Bug_3683_Regression/Echo_i.h | 3 | ||||
-rw-r--r-- | TAO/tests/IDL_Test/typedef.idl | 4 | ||||
-rw-r--r-- | TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h | 3 |
3 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Echo_i.h b/TAO/tests/Bug_3683_Regression/Echo_i.h index 5afd29de0b1..f626d509794 100644 --- a/TAO/tests/Bug_3683_Regression/Echo_i.h +++ b/TAO/tests/Bug_3683_Regression/Echo_i.h @@ -55,8 +55,7 @@ private: /// ORB pointer. CORBA::ORB_var orb_; - /// Keeping g++ 2.7.2 happy.. - ACE_UNIMPLEMENTED_FUNC (void operator= (const Echo_i&)) + void operator= (const Echo_i&); }; #endif /* ECHO_I_H */ diff --git a/TAO/tests/IDL_Test/typedef.idl b/TAO/tests/IDL_Test/typedef.idl index 5385c5ef936..ee2493ce3e8 100644 --- a/TAO/tests/IDL_Test/typedef.idl +++ b/TAO/tests/IDL_Test/typedef.idl @@ -44,7 +44,7 @@ typedef TAO_V5 TAO_Z5[5]; // typedef has a unique #ifndef guard. module TestModule { - typedef string<32> typedef_1; + typedef string<32> typedef_1; typedef string<32> typedef_2; interface TestInterface @@ -120,3 +120,5 @@ module CommaList + + diff --git a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h b/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h index 6e4d005d9e5..6149b7f5dd4 100644 --- a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h +++ b/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h @@ -24,8 +24,7 @@ class MY_Stub_Export Smart_Diamond_Top_Proxy : public virtual Diamond::TAO_Diamo Smart_Diamond_Top_Proxy (Diamond::Top_ptr proxy); - virtual char * shape () -; + virtual char * shape (); // Smartify the method call! // Dont need to add any extra functionality into shutdown() |