Skip to content

Commit

Permalink
fixed comments in tao_idl-generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
mitza-oci committed Nov 19, 2021
1 parent 8d8ffb8 commit f8d8777
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions TAO/TAO_IDL/be/be_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,13 @@ TAO_OutStream::operator<< (const char *str)
return *this;
}

TAO_OutStream &
TAO_OutStream::operator<< (char ch)
{
ACE_OS::fprintf (this->fp_, "%c", ch);
return *this;
}

TAO_OutStream &
TAO_OutStream::operator<< (const ACE_CString &str)
{
Expand Down
1 change: 1 addition & 0 deletions TAO/TAO_IDL/be_include/be_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ class TAO_OutStream
#endif /* ACE_HAS_CPP11 */

TAO_OutStream &operator<< (const char *str);
TAO_OutStream &operator<< (char ch);
TAO_OutStream &operator<< (const ACE_CString &str);
TAO_OutStream &operator<< (const ACE_CDR::UShort num);
TAO_OutStream &operator<< (const ACE_CDR::Short num);
Expand Down

0 comments on commit f8d8777

Please sign in to comment.