diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-08 03:51:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-08 03:51:32 +0300 |
commit | 90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8 (patch) | |
tree | b6fe4d5494381abfe7800022a67bbdfd2e20f97e /src/const/gui | |
parent | b0d6ef00eebb7dcd03b051db63840c04243a784d (diff) | |
download | ManaVerse-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.gz ManaVerse-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.bz2 ManaVerse-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.tar.xz ManaVerse-90656bf081fde45eb6e1aab2cd50a3a2b8dd17c8.zip |
Remove useless string initialisations.
Diffstat (limited to 'src/const/gui')
-rw-r--r-- | src/const/gui/chat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/const/gui/chat.h b/src/const/gui/chat.h index 5b3eadb2a..a39516e13 100644 --- a/src/const/gui/chat.h +++ b/src/const/gui/chat.h @@ -25,7 +25,7 @@ #include <string> -const std::string GENERAL_CHANNEL = ""; +const std::string GENERAL_CHANNEL; const std::string GM_CHANNEL = "#gm"; const std::string TRADE_CHANNEL = "#trade"; |