Skip to content

Commit

Permalink
Layout changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillemsen committed Oct 12, 2022
1 parent 892141a commit 99f6623
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions TAO/tests/Multiple/Multiple_Impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ Bottom_Impl::top_quote ()
}

char *
Bottom_Impl::left_quote ( )
Bottom_Impl::left_quote ()
{
return CORBA::string_dup(Quote::left);
}

char *
Bottom_Impl::right_quote ( )
Bottom_Impl::right_quote ()
{
return CORBA::string_dup(Quote::right);
}

char *
Bottom_Impl::bottom_quote ( )
Bottom_Impl::bottom_quote ()
{
return CORBA::string_dup(Quote::bottom);
}
Expand Down
2 changes: 1 addition & 1 deletion TAO/tests/OBV/Indirection/Messenger_i.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ char * Messenger_i::receive_list (::demo::value::idl::Node * node)
{
size_t const len = l.size ();
size_t i = 0;
for ( i = 0; i < len; ++i)
for (i = 0; i < len; ++i)
{
if (l[i] == x)
break;
Expand Down
2 changes: 1 addition & 1 deletion TAO/tests/OBV/Truncatable/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
caught_expected_exception = true;
}

if ( ! caught_expected_exception)
if (!caught_expected_exception)
{
fail++;
if (verbose)
Expand Down
4 changes: 2 additions & 2 deletions TAO/tests/TransportCurrent/Framework/run_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
my $confmod = "";

my $mode = shift (@ARGV);
if ( $mode =~ /-dynamic/) {
if ($mode =~ /-dynamic/) {
}
elsif ( $mode =~ /-static/) {
elsif ($mode =~ /-static/) {
$confmod = "-static";
}
else {
Expand Down
4 changes: 2 additions & 2 deletions TAO/tests/TransportCurrent/IIOP/run_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
$status = 0;

$mode = shift (@ARGV);
if ( $mode =~ /-dynamic/) {
if ($mode =~ /-dynamic/) {
$base_client_conf = "client_dynamic" . $PerlACE::svcconf_ext;
$base_server_conf = "server_dynamic" . $PerlACE::svcconf_ext;
$client_conf_file = $client->LocalFile ("$base_client_conf");
$server_conf_file = $server->LocalFile ("$base_server_conf");
}
elsif ( $mode =~ /-static/) {
elsif ($mode =~ /-static/) {
$base_client_conf = "client_static" . $PerlACE::svcconf_ext;
$base_server_conf = "server_static" . $PerlACE::svcconf_ext;
$client_conf_file = $client->LocalFile ("$base_client_conf");
Expand Down
2 changes: 1 addition & 1 deletion TAO/tests/Two_Objects/README
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for subsequent requests on the same connection handle.

Description:

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

0 comments on commit 99f6623

Please sign in to comment.