From c1cb06e00922ba5c15c128bab05c71220077fdce Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 2 Feb 2009 15:54:28 -0400 Subject: Updated some internal documentation. --- src/report.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/report.h') diff --git a/src/report.h b/src/report.h index 54f24845..2654d7c6 100644 --- a/src/report.h +++ b/src/report.h @@ -216,32 +216,32 @@ public: value_t option_full_help(call_scope_t& args) { // H option_full_help(std::cout); - throw 0; + throw int(0); } value_t option_help(call_scope_t& args) { // h option_help(std::cout); - throw 0; + throw int(0); } value_t option_help_calc(call_scope_t& args) { option_calc_help(std::cout); - throw 0; + throw int(0); } value_t option_help_disp(call_scope_t& args) { option_disp_help(std::cout); - throw 0; + throw int(0); } value_t option_help_comm(call_scope_t& args) { option_comm_help(std::cout); - throw 0; + throw int(0); } value_t option_version(call_scope_t& args) { // v show_version(std::cout); - throw 0; + throw int(0); } value_t option_init_file(call_scope_t& args) { // i: -- cgit v1.2.3