Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed redundant whitespace #194

Merged
merged 2 commits into from
Feb 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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