Removed Boost dependency in language distinction.

As Boost isn’t used in the rest of this project anymore, this commit
removes the unnecessary dependency to boost::bimap just for language
detection, and replaces it with a simple std::map instead.
This commit is contained in:
2017-10-28 15:44:37 +02:00
parent 1631a70a0b
commit 72fc7493b2
4 changed files with 10 additions and 31 deletions

View File

@@ -23,7 +23,6 @@ class Language
SAS
};
static std::string toString(Type language);
static Language::Type fromString(const std::string &languageName);
public: