mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-03 00:46:55 +02:00
Merge pull request #281 from janisozaur/clang4
Accepted. This should be fixed in fuzzylite first, still.
This commit is contained in:
@ -442,11 +442,9 @@ namespace fl {
|
|||||||
|
|
||||||
template FL_API std::string Operation::join(int items, const std::string& separator,
|
template FL_API std::string Operation::join(int items, const std::string& separator,
|
||||||
int first, ...);
|
int first, ...);
|
||||||
template FL_API std::string Operation::join(int items, const std::string& separator,
|
|
||||||
double first, ...);
|
|
||||||
|
|
||||||
template <> FL_API std::string Operation::join(int items, const std::string& separator,
|
template <> FL_API std::string Operation::join(int items, const std::string& separator,
|
||||||
float first, ...) {
|
double first, ...) {
|
||||||
std::ostringstream ss;
|
std::ostringstream ss;
|
||||||
ss << str(first);
|
ss << str(first);
|
||||||
if (items > 1) ss << separator;
|
if (items > 1) ss << separator;
|
||||||
|
Reference in New Issue
Block a user