Skip to content

Commit

Permalink
Merge pull request #194 from jwillemsen/jwi-redundantwhitespace
Browse files Browse the repository at this point in the history
Removed redundant whitespace
  • Loading branch information
jwillemsen authored Feb 9, 2022
2 parents f2a289f + 9b46edd commit 03a86b4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/ami/test_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "testS.h"

class A_i
: public virtual CORBA::servant_traits< Test::A>::base_type
: public virtual CORBA::servant_traits<Test::A>::base_type
{
public:
/// ctor
Expand Down
2 changes: 1 addition & 1 deletion ridlbe/c++11/templates/cli/src/array_typecode.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

// generated from <%= ridl_template_path %>
% cxxdim_sizes.reverse.each_with_index do |sz, ix|
static TAO_TAO::TypeCode::Sequence< TAO_CORBA::TypeCode_ptr const *,
static TAO_TAO::TypeCode::Sequence<TAO_CORBA::TypeCode_ptr const *,
TAO_TAO::Null_RefCount_Policy>
_tao<%= cxx_typecode %>_arytc_<%= ix %> (
TAO_CORBA::tk_array,
Expand Down
2 changes: 1 addition & 1 deletion ridlbe/c++11/templates/cli/src/sequence_typecode.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// generated from <%= ridl_template_path %>
static TAO_TAO::TypeCode::Sequence< TAO_CORBA::TypeCode_ptr const *,
static TAO_TAO::TypeCode::Sequence<TAO_CORBA::TypeCode_ptr const *,
TAO_TAO::Null_RefCount_Policy>
_tao<%= cxx_typecode %>_seqtc (
TAO_CORBA::tk_sequence,
Expand Down
2 changes: 1 addition & 1 deletion ridlbe/c++11/templates/cli/src/string_typecode.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// generated from <%= ridl_template_path %>
static TAO_TAO::TypeCode::String< TAO_TAO::Null_RefCount_Policy>
static TAO_TAO::TypeCode::String<TAO_TAO::Null_RefCount_Policy>
_tao<%= cxx_typecode %>_str (
TAO_CORBA::<% if is_wstring? %>tk_wstring<% else %>tk_string<% end %>,
<%= bound %>U);
Expand Down
2 changes: 1 addition & 1 deletion ridlbe/c++11/templates/cli/src/union_typecode.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
% case_lst << [default_member, default_label] if has_default? && !has_implicit_default?
% case_lst.each_with_index do |(m, lbl), nr|
% tc = m.is_standard_typecode? ? "TAO_CORBA::#{m.cxx_typecode}" : "__tao::#{m.scoped_cxx_typecode}"
static ::TAOX11_NAMESPACE::TypeCode::Case_T< <%= scoped_switch_cxxtype %>,
static ::TAOX11_NAMESPACE::TypeCode::Case_T<<%= scoped_switch_cxxtype %>,
char const *,
TAO_CORBA::TypeCode_ptr const *> const
_tao_cases<%= cxx_typecode %>_<%= nr %> (
Expand Down

0 comments on commit 03a86b4

Please sign in to comment.