diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-12-24 16:55:15 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-12-24 16:55:15 +0100 |
commit | f2d2b4fecbb09150332d390412e55161e247b89b (patch) | |
tree | 85c19a2161f493efce0efee36f7f7569b644a143 /src/ChatColor.cpp | |
parent | Merge pull request #466 from Sxw1212/master (diff) | |
parent | removed the function def also (diff) | |
download | cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar.gz cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar.bz2 cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar.lz cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar.xz cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.tar.zst cuberite-f2d2b4fecbb09150332d390412e55161e247b89b.zip |
Diffstat (limited to 'src/ChatColor.cpp')
-rw-r--r-- | src/ChatColor.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/ChatColor.cpp b/src/ChatColor.cpp index 2b223ee76..72a0a6928 100644 --- a/src/ChatColor.cpp +++ b/src/ChatColor.cpp @@ -1,4 +1,3 @@ - #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "ChatColor.h" @@ -29,11 +28,5 @@ const std::string cChatColor::Underlined = cChatColor::Color + "n"; const std::string cChatColor::Italic = cChatColor::Color + "o"; const std::string cChatColor::Plain = cChatColor::Color + "r"; -const std::string cChatColor::MakeColor( char a_Color ) -{ - return cChatColor::Color + a_Color; -} - - |