Browse Source

Merge pull request #281 from janisozaur/clang4

Accepted. This should be fixed in fuzzylite first, still.
DjWarmonger 8 năm trước cách đây
mục cha
commit
0fdee4fde2
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      AI/FuzzyLite/fuzzylite/src/Operation.cpp

+ 1 - 3
AI/FuzzyLite/fuzzylite/src/Operation.cpp

@@ -442,11 +442,9 @@ namespace fl {
 
     template FL_API std::string Operation::join(int items, const std::string& separator,
             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,
-            float first, ...) {
+            double first, ...) {
         std::ostringstream ss;
         ss << str(first);
         if (items > 1) ss << separator;