mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-14 02:33:51 +02:00
Merge pull request #281 from janisozaur/clang4
Accepted. This should be fixed in fuzzylite first, still.
This commit is contained in:
commit
0fdee4fde2
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user