Skip to content

Commit 892141a

Browse files
committed
Layout changes
1 parent 727fb1f commit 892141a

103 files changed

Lines changed: 432 additions & 506 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

TAO/tests/BiDirectional/test_i.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Callback_i::shutdown ()
1717
}
1818

1919
void
20-
Callback_i::callback_method ( /**/)
20+
Callback_i::callback_method (/**/)
2121
{
2222
if (TAO_debug_level > 0)
2323
ACE_DEBUG ((LM_DEBUG, "Callback method called\n"));

TAO/tests/BiDirectional_NestedUpcall/test_i.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Callback_i::shutdown ()
1616
}
1717

1818
void
19-
Callback_i::callback_method ( /**/)
19+
Callback_i::callback_method (/**/)
2020
{
2121
if (TAO_debug_level > 0)
2222
ACE_DEBUG ((LM_DEBUG, "Callback method called\n"));

TAO/tests/Big_Reply/Big_Reply_i.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Big_Reply_i::~Big_Reply_i ()
1212
}
1313

1414
Test::Octet_Seq *
15-
Big_Reply_i::get_big_reply ( /**/)
15+
Big_Reply_i::get_big_reply (/**/)
1616
{
1717
Test::Octet_Seq_var reply_mesg =
1818
new Test::Octet_Seq (this->length_);
@@ -23,12 +23,12 @@ Big_Reply_i::get_big_reply ( /**/)
2323
}
2424

2525
void
26-
Big_Reply_i::ping ( /**/)
26+
Big_Reply_i::ping (/**/)
2727
{
2828
}
2929

3030
void
31-
Big_Reply_i::shutdown ( /**/)
31+
Big_Reply_i::shutdown (/**/)
3232
{
3333
this->orb_->shutdown ();
3434
}

TAO/tests/Bug_1361_Regression/run_test.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
}
7474

7575
my $client_idx = 0;
76-
while (($elapsed < $max_running_time) ) {
76+
while (($elapsed < $max_running_time)) {
7777
# Start all clients in parallel
7878
my $args_saved = $CL->Arguments ();
7979
$CL->Arguments ("$args_saved$client_idx.log") unless $debug_opts eq '';

TAO/tests/Bug_1628_Regression/run_test.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# Body_dup is there, then all the Body_* methods are also there.
4747
#
4848
$found = 0 ;
49-
open (I_FILE, "$server_TestCaseC_i") ;
49+
open (I_FILE, "$server_TestCaseC_i");
5050
while( <I_FILE> ){
5151
chomp ;
5252
if( $_ =~ /Body_dup/ ){

TAO/tests/Bug_1639_Regression/struct_client.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,27 +76,27 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
7676

7777
try {
7878
DynAny_var da_struct_alias = daf->create_dyn_any_from_type_code (tc_struct_alias.in());
79-
} catch ( const CORBA::UNKNOWN &) {
79+
} catch (const CORBA::UNKNOWN &) {
8080
cout << "CORBA::UNKNOWN exception when calling create_dyn_any_from_type_code (tc_struct_alias)" << endl;
8181
}
8282

8383
try {
8484
DynAny_var da_struct_alias = daf->create_dyn_any (any_struct_alias);
85-
} catch ( const CORBA::UNKNOWN &) {
85+
} catch (const CORBA::UNKNOWN &) {
8686
cout << "CORBA::UNKNOWN exception when calling create_dyn_any (any_struct_alias)" << endl;
8787
}
8888

8989
DynAny_var da_union = daf->create_dyn_any_from_type_code (tc_union.in());
9090

9191
try {
9292
DynAny_var da_union_alias = daf->create_dyn_any_from_type_code (tc_union_alias.in());
93-
} catch ( const CORBA::UNKNOWN &) {
93+
} catch (const CORBA::UNKNOWN &) {
9494
cout << "CORBA::UNKNOWN exception when calling create_dyn_any_from_type_code (tc_union_alias)" << endl;
9595
}
9696

9797
try {
9898
DynAny_var da_union_alias = daf->create_dyn_any (any_union_alias);
99-
} catch ( const CORBA::UNKNOWN &) {
99+
} catch (const CORBA::UNKNOWN &) {
100100
cout << "CORBA::UNKNOWN exception when calling create_dyn_any (any_union_alias)" << endl;
101101
}
102102

TAO/tests/Bug_2084_Regression/EventNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ EventNode::EventNode (CORBA::ORB_ptr orb, ACE_thread_t thrid)
1010
{
1111
}
1212

13-
void EventNode::registerHello ( ::Test::Hello_ptr h )
13+
void EventNode::registerHello (::Test::Hello_ptr h)
1414
{
1515
ACE_DEBUG ((LM_DEBUG,
1616
"(%P|%t) EventNode: registerHello will call get_string...\n"));

TAO/tests/Bug_2084_Regression/EventNode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class EventNode
1818
ACE_thread_t thr_id);
1919

2020
// = The skeleton methods
21-
virtual void registerHello ( ::Test::Hello_ptr h);
21+
virtual void registerHello (::Test::Hello_ptr h);
2222

2323
virtual void shutdown ();
2424

TAO/tests/Bug_2084_Regression/Hello.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Hello
1818
ACE_thread_t thr_id);
1919

2020
// = The skeleton methods
21-
virtual char * get_string ( ::Test::ThreadId caller_threadid);
21+
virtual char * get_string (::Test::ThreadId caller_threadid);
2222

2323
virtual void shutdown ();
2424

TAO/tests/Bug_2234_Regression/Test.idl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ module Test
2828

2929
interface Foo
3030
{
31-
long TestLong( in long a, out long b, inout long c );
32-
string TestString( in string a, out string b, inout string c );
33-
MyNonVarStruct TestNonVarStruct( in MyNonVarStruct a, out MyNonVarStruct b, inout MyNonVarStruct c );
34-
MyVarStruct TestVarStruct( in MyVarStruct a, out MyVarStruct b, inout MyVarStruct c );
35-
MyNonVarUnion TestNonVarUnion( in MyNonVarUnion a, out MyNonVarUnion b, inout MyNonVarUnion c );
36-
MyVarUnion TestVarUnion( in MyVarUnion a, out MyVarUnion b, inout MyVarUnion c );
37-
MySeqOfLong TestSeqOfLong( in MySeqOfLong a, out MySeqOfLong b, inout MySeqOfLong c );
38-
any TestAny( in any a, out any b, inout any c );
39-
MyArray TestArray( in MyArray a, out MyArray b, inout MyArray c );
31+
long TestLong( in long a, out long b, inout long c);
32+
string TestString( in string a, out string b, inout string c);
33+
MyNonVarStruct TestNonVarStruct( in MyNonVarStruct a, out MyNonVarStruct b, inout MyNonVarStruct c);
34+
MyVarStruct TestVarStruct( in MyVarStruct a, out MyVarStruct b, inout MyVarStruct c);
35+
MyNonVarUnion TestNonVarUnion( in MyNonVarUnion a, out MyNonVarUnion b, inout MyNonVarUnion c);
36+
MyVarUnion TestVarUnion( in MyVarUnion a, out MyVarUnion b, inout MyVarUnion c);
37+
MySeqOfLong TestSeqOfLong( in MySeqOfLong a, out MySeqOfLong b, inout MySeqOfLong c);
38+
any TestAny( in any a, out any b, inout any c);
39+
MyArray TestArray( in MyArray a, out MyArray b, inout MyArray c);
4040
Object TestObject( in Object a, out Object b, inout Object c);
4141
oneway void ShutdownServer();
4242
};

0 commit comments

Comments
 (0)