Skip to content

Commit

Permalink
Merge pull request RemedyIT#327 from jwillemsen/jwi-writeonlayout
Browse files Browse the repository at this point in the history
Layout changes
  • Loading branch information
jwillemsen authored Sep 22, 2023
2 parents d1a33c8 + e91e819 commit 0a617ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 1 addition & 3 deletions ridlbe/c++11/templates/cli/hdr/array_idl_traits.erb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ inline OStrm_& operator <<(
std::false_type>::value,
formatter<<%= scoped_cxxtype %>, OStrm_>,
typename writer_t::formatter_t>::type;
return IDL::traits<<%= scoped_cxxtype %>>::write_on (
os, w.val_,
formatter_t ());
return IDL::traits<<%= scoped_cxxtype %>>::write_on (os, w.val_, formatter_t ());
}

#endif
4 changes: 1 addition & 3 deletions ridlbe/c++11/templates/cli/hdr/map_idl_traits.erb
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ inline OStrm_& operator <<(
std::false_type>::value,
formatter<<%= scoped_cxxtype %>, OStrm_>,
typename writer_t::formatter_t>::type;
return IDL::traits<<%= scoped_cxxtype %>>::write_on (
os, w.val_,
formatter_t ());
return IDL::traits<<%= scoped_cxxtype %>>::write_on (os, w.val_, formatter_t ());
}

#endif
4 changes: 1 addition & 3 deletions ridlbe/c++11/templates/cli/hdr/sequence_idl_traits.erb
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ inline OStrm_& operator <<(
std::false_type>::value,
formatter<<%= scoped_cxxtype %>, OStrm_>,
typename writer_t::formatter_t>::type;
return IDL::traits<<%= scoped_cxxtype %>>::write_on (
os, w.val_,
formatter_t ());
return IDL::traits<<%= scoped_cxxtype %>>::write_on (os, w.val_, formatter_t ());
}

#endif
4 changes: 1 addition & 3 deletions ridlbe/c++11/templates/cli/hdr/string_idl_traits.erb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ inline OStrm_& operator <<(
std::false_type>::value,
formatter<<%= scoped_cxxtype %>, OStrm_>,
typename writer_t::formatter_t>::type;
return IDL::traits<<%= scoped_cxxtype %>>::write_on (
os, w.val_,
formatter_t ());
return IDL::traits<<%= scoped_cxxtype %>>::write_on (os, w.val_, formatter_t ());
}

#endif

0 comments on commit 0a617ef

Please sign in to comment.