Skip to content

Commit 99f6623

Browse files
committed
Layout changes
1 parent 892141a commit 99f6623

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

TAO/tests/Multiple/Multiple_Impl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ Bottom_Impl::top_quote ()
2121
}
2222

2323
char *
24-
Bottom_Impl::left_quote ( )
24+
Bottom_Impl::left_quote ()
2525
{
2626
return CORBA::string_dup(Quote::left);
2727
}
2828

2929
char *
30-
Bottom_Impl::right_quote ( )
30+
Bottom_Impl::right_quote ()
3131
{
3232
return CORBA::string_dup(Quote::right);
3333
}
3434

3535
char *
36-
Bottom_Impl::bottom_quote ( )
36+
Bottom_Impl::bottom_quote ()
3737
{
3838
return CORBA::string_dup(Quote::bottom);
3939
}

TAO/tests/OBV/Indirection/Messenger_i.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ char * Messenger_i::receive_list (::demo::value::idl::Node * node)
6464
{
6565
size_t const len = l.size ();
6666
size_t i = 0;
67-
for ( i = 0; i < len; ++i)
67+
for (i = 0; i < len; ++i)
6868
{
6969
if (l[i] == x)
7070
break;

TAO/tests/OBV/Truncatable/client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
258258
caught_expected_exception = true;
259259
}
260260

261-
if ( ! caught_expected_exception)
261+
if (!caught_expected_exception)
262262
{
263263
fail++;
264264
if (verbose)

TAO/tests/TransportCurrent/Framework/run_test.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
my $confmod = "";
1313

1414
my $mode = shift (@ARGV);
15-
if ( $mode =~ /-dynamic/) {
15+
if ($mode =~ /-dynamic/) {
1616
}
17-
elsif ( $mode =~ /-static/) {
17+
elsif ($mode =~ /-static/) {
1818
$confmod = "-static";
1919
}
2020
else {

TAO/tests/TransportCurrent/IIOP/run_test.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
$status = 0;
2424

2525
$mode = shift (@ARGV);
26-
if ( $mode =~ /-dynamic/) {
26+
if ($mode =~ /-dynamic/) {
2727
$base_client_conf = "client_dynamic" . $PerlACE::svcconf_ext;
2828
$base_server_conf = "server_dynamic" . $PerlACE::svcconf_ext;
2929
$client_conf_file = $client->LocalFile ("$base_client_conf");
3030
$server_conf_file = $server->LocalFile ("$base_server_conf");
3131
}
32-
elsif ( $mode =~ /-static/) {
32+
elsif ($mode =~ /-static/) {
3333
$base_client_conf = "client_static" . $PerlACE::svcconf_ext;
3434
$base_server_conf = "server_static" . $PerlACE::svcconf_ext;
3535
$client_conf_file = $client->LocalFile ("$base_client_conf");

TAO/tests/Two_Objects/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ for subsequent requests on the same connection handle.
1616

1717
Description:
1818

19-
The server creates two servants ( each implementing different
19+
The server creates two servants (each implementing different
2020
interfaces ). Two threads are created on the server and each
2121
one of them listens for requests (has a orb->run() call). The
2222
client first makes a one way call to Servant 1. It then makes

0 commit comments

Comments
 (0)