diff options
-rw-r--r-- | src/mnemonics/language_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mnemonics/language_base.h b/src/mnemonics/language_base.h index 4d7cce724..457d51404 100644 --- a/src/mnemonics/language_base.h +++ b/src/mnemonics/language_base.h @@ -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();
|