ソースを参照

Fix bad character

Johannes Kreutz 3 年 前
コミット
c20ddea395
1 ファイル変更1 行追加1 行削除
  1. 1 1
      trackpoint-app/include/PlatformSupport.hpp

+ 1 - 1
trackpoint-app/include/PlatformSupport.hpp

@@ -6,7 +6,7 @@
 #elif __unix__
   static std::string openScadPath = "openscad";
   static std::string fileDelimiter = "/";
-#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) || defined(_WIN64)
+#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) || defined(_WIN64)
   // Currently unsupported
   static std::string openScadPath = "";
   static std::string fileDelimiter = "\\";