diff options
Diffstat (limited to 'src/utils/trim.h')
-rw-r--r-- | src/utils/trim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/trim.h b/src/utils/trim.h index 1b5311e6..fec99100 100644 --- a/src/utils/trim.h +++ b/src/utils/trim.h @@ -31,7 +31,7 @@ * * @param str the string to trim spaces off */ -static void trim(std::string &str) +inline void trim(std::string &str) { std::string::size_type pos = str.find_last_not_of(' '); if (pos != std::string::npos) |