From d9d06b99a4cbe03c6e40039b6d10c24686c82755 Mon Sep 17 00:00:00 2001 From: John Khvatov Date: Thu, 1 May 2014 03:10:54 +0400 Subject: [PATCH] doc: rename namespace from google (deprecated) to gflags (default) --- doc/gflags.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/gflags.html b/doc/gflags.html index 1a887b4..3a66713 100644 --- a/doc/gflags.html +++ b/doc/gflags.html @@ -269,7 +269,7 @@ the getopt library, but has much less overhead to use. In fact, it's just a single function call:

-   google::ParseCommandLineFlags(&argc, &argv, true);
+   gflags::ParseCommandLineFlags(&argc, &argv, true);
 

Usually, this code is at the beginning of main(). @@ -529,8 +529,8 @@ access parts of argv outside main, including the program name (argv[0]).

For more information about these routines, and other useful helper -methods such as google::SetUsageMessage() and -google::SetVersionString, see gflags.h.

+methods such as gflags::SetUsageMessage() and +gflags::SetVersionString, see gflags.h.

Miscellaneous Notes