aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/compiler/command_line_interface.h
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2018-08-13 12:32:21 -0700
committerFeng Xiao <xfxyjwf@gmail.com>2018-08-13 12:32:21 -0700
commit14be563f00b5fd04e50c44420bef6e5061080156 (patch)
tree305de6fec737246373cd50f3accdf02ebf461037 /src/google/protobuf/compiler/command_line_interface.h
parentba8692fbade4ba329cc4531e286ab5a8e0821d97 (diff)
downloadprotobuf-14be563f00b5fd04e50c44420bef6e5061080156.tar.gz
protobuf-14be563f00b5fd04e50c44420bef6e5061080156.tar.bz2
protobuf-14be563f00b5fd04e50c44420bef6e5061080156.zip
Down-integrate proto2 namespace fix.
Diffstat (limited to 'src/google/protobuf/compiler/command_line_interface.h')
-rw-r--r--src/google/protobuf/compiler/command_line_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/compiler/command_line_interface.h b/src/google/protobuf/compiler/command_line_interface.h
index acd2f84a..8dba9949 100644
--- a/src/google/protobuf/compiler/command_line_interface.h
+++ b/src/google/protobuf/compiler/command_line_interface.h
@@ -73,10 +73,10 @@ class DiskSourceTree; // importer.h
// then write a main() procedure like this:
//
// int main(int argc, char* argv[]) {
-// proto2::compiler::CommandLineInterface cli;
+// google::protobuf::compiler::CommandLineInterface cli;
//
// // Support generation of C++ source and headers.
-// proto2::compiler::cpp::CppGenerator cpp_generator;
+// google::protobuf::compiler::cpp::CppGenerator cpp_generator;
// cli.RegisterGenerator("--cpp_out", &cpp_generator,
// "Generate C++ source and header.");
//