From 0f9df1a1745d423d1b93668a346cb7533831c84d Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Mon, 30 Nov 2015 18:27:37 +0100 Subject: [PATCH] COMMON: Remove explicit instantiation of composeseString There are already specializations for them. --- src/common/strutil.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/common/strutil.cpp b/src/common/strutil.cpp index 30a890c1..87df4273 100644 --- a/src/common/strutil.cpp +++ b/src/common/strutil.cpp @@ -308,8 +308,6 @@ template<> UString composeString(double value) { return UString::format("%lf", value); } -template UString composeString(bool value); - template UString composeString< signed char >( signed char value); template UString composeString(unsigned char value); template UString composeString< signed short >( signed short value); @@ -321,7 +319,4 @@ template UString composeString(unsigned long value); template UString composeString< signed long long>( signed long long value); template UString composeString(unsigned long long value); -template UString composeString(float value); -template UString composeString(double value); - } // End of namespace Common