summaryrefslogtreecommitdiff
path: root/cli/options.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-12-13 10:32:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-12-13 10:32:44 +0200
commit47a0fa12397770ea49ea80f164dba8e0f82e97d1 (patch)
tree588f490b282c79df2396432bfe0e8ede7509c4b1 /cli/options.cxx
parent9284f891fd2b15c25d7107d77c9bce100054fe3d (diff)
Mark 'stdout' as a reserved name
On some platforms (e.g., Windows/VC++ 8.0) stdout is a macro.
Diffstat (limited to 'cli/options.cxx')
-rw-r--r--cli/options.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/options.cxx b/cli/options.cxx
index 4e8b67d..5acc325 100644
--- a/cli/options.cxx
+++ b/cli/options.cxx
@@ -505,7 +505,7 @@ options (int& argc,
html_prologue_ (),
html_epilogue_ (),
class__ (),
- stdout_ (),
+ stdout__ (),
hxx_suffix_ (".hxx"),
ixx_suffix_ (".ixx"),
cxx_suffix_ (".cxx"),
@@ -547,7 +547,7 @@ options (int start,
html_prologue_ (),
html_epilogue_ (),
class__ (),
- stdout_ (),
+ stdout__ (),
hxx_suffix_ (".hxx"),
ixx_suffix_ (".ixx"),
cxx_suffix_ (".cxx"),
@@ -589,7 +589,7 @@ options (int& argc,
html_prologue_ (),
html_epilogue_ (),
class__ (),
- stdout_ (),
+ stdout__ (),
hxx_suffix_ (".hxx"),
ixx_suffix_ (".ixx"),
cxx_suffix_ (".cxx"),
@@ -633,7 +633,7 @@ options (int start,
html_prologue_ (),
html_epilogue_ (),
class__ (),
- stdout_ (),
+ stdout__ (),
hxx_suffix_ (".hxx"),
ixx_suffix_ (".ixx"),
cxx_suffix_ (".cxx"),
@@ -673,7 +673,7 @@ options (::cli::scanner& s,
html_prologue_ (),
html_epilogue_ (),
class__ (),
- stdout_ (),
+ stdout__ (),
hxx_suffix_ (".hxx"),
ixx_suffix_ (".ixx"),
cxx_suffix_ (".cxx"),
@@ -824,7 +824,7 @@ struct _cli_options_map_init
_cli_options_map_["--class"] =
&::cli::thunk< options, std::string, &options::class__ >;
_cli_options_map_["--stdout"] =
- &::cli::thunk< options, bool, &options::stdout_ >;
+ &::cli::thunk< options, bool, &options::stdout__ >;
_cli_options_map_["--hxx-suffix"] =
&::cli::thunk< options, std::string, &options::hxx_suffix_ >;
_cli_options_map_["--ixx-suffix"] =