mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Specify that the variables in const.hpp are allowed to be unused
This commit is contained in:
parent
c631738cd6
commit
99772313d6
1 changed files with 2 additions and 2 deletions
|
@ -4,12 +4,12 @@
|
|||
|
||||
namespace chatterino {
|
||||
|
||||
static const char *ANONYMOUS_USERNAME_LABEL = " - anonymous - ";
|
||||
static const char *ANONYMOUS_USERNAME_LABEL __attribute__((unused)) = " - anonymous - ";
|
||||
|
||||
namespace providers {
|
||||
namespace twitch {
|
||||
|
||||
static const char *ANONYMOUS_USERNAME = "justinfan64537";
|
||||
static const char *ANONYMOUS_USERNAME __attribute__((unused)) = "justinfan64537";
|
||||
|
||||
} // namespace twitch
|
||||
} // namespace providers
|
||||
|
|
Loading…
Reference in a new issue