diff options
author | Silver Chan <chenchuanyinuestc@gmail.com> | 2017-11-03 16:21:17 +0800 |
---|---|---|
committer | Andreas Schuh <andreas.schuh.84@gmail.com> | 2017-11-03 12:21:22 +0000 |
commit | 77592648e3f3be87d6c7123eb81cbad75f9aef5a (patch) | |
tree | 26e6ab56f48f94d4c70840d0a07548fa12515f10 | |
parent | 23348465a02c9fdbdecce01cee24e62b9f1f5bad (diff) | |
download | gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.bz2 gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a.zip |
repair wrong namespace problem
repair wrong namespace problem
-rw-r--r-- | test/gflags_declare_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gflags_declare_test.cc b/test/gflags_declare_test.cc index 707bcc0..47d11c2 100644 --- a/test/gflags_declare_test.cc +++ b/test/gflags_declare_test.cc @@ -5,8 +5,8 @@ void print_message(); // in gflags_declare_flags.cc int main(int argc, char **argv) { - gflags::SetUsageMessage("Test compilation and use of gflags_declare.h"); - gflags::ParseCommandLineFlags(&argc, &argv, true); + GFLAGS_NAMESPACE::SetUsageMessage("Test compilation and use of gflags_declare.h"); + GFLAGS_NAMESPACE::ParseCommandLineFlags(&argc, &argv, true); print_message(); return 0; } |