#ifndef BOOK_STRINGHELPERS_HPP #define BOOK_STRINGHELPERS_HPP #include // Since std::to_string doesn't work on MinGW we have to implement // our own to support all platforms. template std::string toString(const T &value); #include "StringHelpers.inl" #endif // BOOK_STRINGHELPERS_HPP