base: explicitly suggest potential use of 'All' debug flags

Without this declaration, new clangs will complain about this value
being unused. It has no explicit use in the codebase, but it can be
useful to turn on all debugging flags while in a debugger to greatly
increase simulator verbosity.
This commit is contained in:
Curtis Dunham 2014-04-23 05:17:59 -04:00
parent e651188f75
commit c9071ff95e

View file

@ -116,6 +116,8 @@ FlagsMap &allFlags();
Flag *findFlag(const std::string &name);
extern Flag *const All;
bool changeFlag(const char *s, bool value);
} // namespace Debug