Fix of compilation on Linux, disabled -Wreorder

This commit is contained in:
Vojtech Bubnik 2018-09-17 17:17:38 +02:00
parent 153bd108a2
commit 27bba45331
4 changed files with 5 additions and 4 deletions

View File

@ -11,7 +11,7 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules/)
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
# Workaround for an old CMake, which does not understand CMAKE_CXX_STANDARD.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall" )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wno-reorder" )
find_package(PkgConfig REQUIRED)
endif()

View File

@ -1,7 +1,7 @@
#include "PostProcessor.hpp"
#ifdef WIN32
#if 1
//#ifdef WIN32
namespace Slic3r {

View File

@ -2,6 +2,7 @@
#define slic3r_Print_hpp_
#include "libslic3r.h"
#include <atomic>
#include <set>
#include <vector>
#include <string>

View File

@ -205,7 +205,7 @@ int rename_file(const std::string &from, const std::string &to)
#else
boost::nowide::remove(from.c_str());
boost::nowide::remove(to.c_str());
ec = boost::nowide::rename(from.c_str(), to.c_str());
#endif