diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-06-04 16:36:23 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-06-04 16:36:23 +0200 |
commit | 40065aa658bf6eb0e4321983d36f16e8e61ad58e (patch) | |
tree | 0b060298741bc2a97120858b768eac10a1499e8f /src/common/Utilities/Util.h | |
parent | 3a63cfb1b240839c81b2a741fd33cae5df3d7180 (diff) |
Core/GameTables: Fixed loading gametables with trailing tabs
Diffstat (limited to 'src/common/Utilities/Util.h')
-rw-r--r-- | src/common/Utilities/Util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Util.h b/src/common/Utilities/Util.h index 7f0fc907964..ff737eb33bd 100644 --- a/src/common/Utilities/Util.h +++ b/src/common/Utilities/Util.h @@ -54,7 +54,7 @@ public: typedef StorageType::const_reference const_reference; public: - Tokenizer(const std::string &src, char const sep, uint32 vectorReserve = 0); + Tokenizer(const std::string &src, char const sep, uint32 vectorReserve = 0, bool keepEmptyStrings = true); ~Tokenizer() { delete[] m_str; } const_iterator begin() const { return m_storage.begin(); } |