summaryrefslogtreecommitdiff
path: root/test/gflags_declare_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/gflags_declare_test.cc')
-rw-r--r--test/gflags_declare_test.cc4
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;
}