Various C++11-related changes.

* Switched to standard libraries for regex, unordered_map and
unordered_set.
* Switched to using the C++ syntax for C header includes (eg. `cstdint`
rather than `stdint.h`).
* Replaced IntToString with STL's to_string.
This commit is contained in:
WrinklyNinja
2014-06-21 21:06:28 +01:00
parent 6201967bcb
commit 91d74a203f
14 changed files with 66 additions and 76 deletions
+3 -3
View File
@@ -36,13 +36,13 @@
#include <clocale>
#include <list>
#include <vector>
#include <regex>
#include <unordered_set>
#include <unordered_map>
#include <boost/regex.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem/detail/utf8_codecvt_facet.hpp>
#include <boost/filesystem.hpp>
#include <boost/unordered_set.hpp>
#include <boost/unordered_map.hpp>
const unsigned int loot_ok = loot::error::ok;
const unsigned int loot_error_liblo_error = loot::error::liblo_error;