-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from jwillemsen/jwi-constexpr-makereference
Make make_reference a constexpr function
- Loading branch information
Showing
36 changed files
with
89 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
|
||
// generated from <%= ridl_template_path %> | ||
void | ||
<%= sendc_prefix_get %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler); | ||
void <%= sendc_prefix_get %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler); | ||
% unless is_readonly? | ||
|
||
void | ||
<%= sendc_prefix_set %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler, | ||
<%= cxx_in_type %> _x11_<%= cxxname %>); | ||
void <%= sendc_prefix_set %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler, | ||
<%= cxx_in_type %> _x11_<%= cxxname %>); | ||
% end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
// generated from <%= ridl_template_path %> | ||
% _args = in_arguments.dup | ||
void | ||
<%= sendc_prefix %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler<%= _args.empty? ? ');' : ',' %> | ||
void <%= sendc_prefix %><%= name %> ( | ||
<%= interface.handler_scoped_cxx_in_type %> ami_handler<%= _args.empty? ? ');' : ',' %> | ||
% while !_args.empty? | ||
% _arg = _args.shift | ||
<%= _arg.stub_arg_type %> <%= _arg.cxxname %><%= _args.empty? ? ');' : ',' %> | ||
<%= _arg.stub_arg_type %> <%= _arg.cxxname %><%= _args.empty? ? ');' : ',' %> | ||
% end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
|
||
// generated from <%= ridl_template_path %> | ||
static void get_<%= name %>_reply_stub ( | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _tao_reply_handler, | ||
TAO_CORBA::ULong reply_status); | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _tao_reply_handler, | ||
TAO_CORBA::ULong reply_status); | ||
% unless is_readonly? | ||
|
||
static void set_<%= name %>_reply_stub ( | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _reply_handler, | ||
TAO_CORBA::ULong reply_status); | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _reply_handler, | ||
TAO_CORBA::ULong reply_status); | ||
|
||
% end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// generated from <%= ridl_template_path %> | ||
static void <%= name %>_reply_stub ( | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _tao_reply_handler, | ||
TAO_CORBA::ULong reply_status); | ||
TAO_InputCDR &_tao_reply_cdr, | ||
TAO_MESSAGING::ReplyHandler_ptr _tao_reply_handler, | ||
TAO_CORBA::ULong reply_status); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.