Index: uspace/lib/cpp/src/string.cpp
===================================================================
--- uspace/lib/cpp/src/string.cpp	(revision 82b671600c884102b9f9337c49e69d5f523d2b63)
+++ uspace/lib/cpp/src/string.cpp	(revision 4d30bcd986917133b31f3f7b6804a9ecc8dd2a77)
@@ -319,15 +319,15 @@
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wliteral-suffix"
-    inline string operator "" s(const char* str, size_t len)
+    string operator "" s(const char* str, size_t len)
     {
         return string{str, len};
     }
 
-    inline u16string operator "" s(const char16_t* str, size_t len)
+    u16string operator "" s(const char16_t* str, size_t len)
     {
         return u16string{str, len};
     }
 
-    inline u32string operator "" s(const char32_t* str, size_t len)
+    u32string operator "" s(const char32_t* str, size_t len)
     {
         return u32string{str, len};
@@ -335,5 +335,5 @@
 
     /* Problem: wchar_t == int in HelenOS, but standard forbids it.
-    inline wstring operator "" s(const wchar_t* str, size_t len)
+    wstring operator "" s(const wchar_t* str, size_t len)
     {
         return wstring{str, len};
