From 54d1cb18805bff585a84a814da925907059484df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Wed, 24 Oct 2012 03:04:06 +0200 Subject: [PATCH] support/Messages.cpp: add space to not be taken as user defined literal In C++11 you are not allowed to have non-literal specifiers right after a string literal. --- src/support/Messages.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/Messages.cpp b/src/support/Messages.cpp index ca5c110913..fdcaf6645c 100644 --- a/src/support/Messages.cpp +++ b/src/support/Messages.cpp @@ -119,7 +119,7 @@ bool Messages::available(string const & c) // this loops at most twice while (true) { string const filen = locale_dir + "/" + code - + "/LC_MESSAGES/"PACKAGE".mo"; + + "/LC_MESSAGES/" PACKAGE ".mo"; if (FileName(filen).isReadableFile()) return true; if (contains(code, '_')) -- 2.39.2