From fa86408d50e34d55cf58c832ffc8040afb44791e Mon Sep 17 00:00:00 2001 From: Nimetu Date: Wed, 1 May 2019 13:13:35 +0300 Subject: [PATCH] Changed: fix for vc2013 --HG-- branch : develop --- code/nel/include/nel/misc/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/include/nel/misc/common.h b/code/nel/include/nel/misc/common.h index e1b3fb9f1..350abc7f3 100644 --- a/code/nel/include/nel/misc/common.h +++ b/code/nel/include/nel/misc/common.h @@ -277,7 +277,7 @@ template T trimRightWhiteSpaces (const T &str) } // if both first and last char are quotes (' or "), then remove them -template T trimQuotes (const T&str) +template T trimQuotes (const T &str) { typename T::size_type size = str.size(); if (size == 0)