Merge pull request #329

204759f mnemonics: fix duplicate symbol error (Wladimir J. van der Laan)
This commit is contained in:
Riccardo Spagni 2015-06-23 09:32:56 +02:00
commit 2cd4d7dd20
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -52,7 +52,7 @@ namespace Language
* \param count How many characters to return.
* \return A string consisting of the first count characters in s.
*/
std::string utf8prefix(const std::string &s, size_t count)
inline std::string utf8prefix(const std::string &s, size_t count)
{
std::string prefix = "";
const char *ptr = s.c_str();