瀏覽代碼

Merge pull request #281 from janisozaur/clang4

Accepted. This should be fixed in fuzzylite first, still.
DjWarmonger 8 年之前
父節點
當前提交
0fdee4fde2
共有 1 個文件被更改,包括 1 次插入3 次删除
  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;