Skip to content

Commit

Permalink
COMMON: Remove explicit instantiation of composeseString<float/double>
Browse files Browse the repository at this point in the history
There are already specializations for them.
  • Loading branch information
DrMcCoy committed Dec 1, 2015
1 parent cd34edf commit 0f9df1a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/common/strutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,6 @@ template<> UString composeString(double value) {
return UString::format("%lf", value);
}

template UString composeString<bool >(bool value);

template UString composeString< signed char >( signed char value);
template UString composeString<unsigned char >(unsigned char value);
template UString composeString< signed short >( signed short value);
Expand All @@ -321,7 +319,4 @@ template UString composeString<unsigned long >(unsigned long value);
template UString composeString< signed long long>( signed long long value);
template UString composeString<unsigned long long>(unsigned long long value);

template UString composeString<float >(float value);
template UString composeString<double >(double value);

} // End of namespace Common

0 comments on commit 0f9df1a

Please sign in to comment.