summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser/option_section.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 12:46:52 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 14:43:05 -0400
commitf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (patch)
tree6436772fbceb28f07bbfaee528d700159beb0cec /src/mongo/util/options_parser/option_section.h
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/util/options_parser/option_section.h')
-rw-r--r--src/mongo/util/options_parser/option_section.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/options_parser/option_section.h b/src/mongo/util/options_parser/option_section.h
index 84169bca119..63d75c852c8 100644
--- a/src/mongo/util/options_parser/option_section.h
+++ b/src/mongo/util/options_parser/option_section.h
@@ -71,7 +71,7 @@ namespace optionenvironment {
* // Run the parser
* Status ret = parser.run(options, argc, argv, envp, &environment);
* if (!ret.isOK()) {
- * cerr << options.helpString() << endl;
+ * cerr << options.helpString() << std::endl;
* exit(EXIT_FAILURE);
* }
*/
@@ -85,7 +85,7 @@ namespace optionenvironment {
/**
* Add a sub section to this section. Used mainly to keep track of section headers for when
- * we need generate the help string for the command line
+ * we need generate the help std::string for the command line
*/
Status addSection(const OptionSection& subSection);