mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
remove attribute where it does not apply
``` gflags.h(226): warning: attribute "visibility" does not apply here ``` The visibility attribute applies to symbols like functions and variables. A definition of an enumeration type that doesn't contain a variable name doesn't create any symbols.
This commit is contained in:
parent
d9b184bd00
commit
2e227c3daa
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ extern GFLAGS_DLL_DECL bool GetCommandLineFlagInfo(const char* name, CommandLine
|
|||
// if (GetCommandLineFlagInfoOrDie("foo").is_default) ...
|
||||
extern GFLAGS_DLL_DECL CommandLineFlagInfo GetCommandLineFlagInfoOrDie(const char* name);
|
||||
|
||||
enum GFLAGS_DLL_DECL FlagSettingMode {
|
||||
enum FlagSettingMode {
|
||||
// update the flag's value (can call this multiple times).
|
||||
SET_FLAGS_VALUE,
|
||||
// update the flag's value, but *only if* it has not yet been updated
|
||||
|
|
Loading…
Add table
Reference in a new issue