Skip to content

Commit

Permalink
Bugfix: missing include assert.h #3155
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Dec 11, 2015
1 parent 37d0558 commit c0248de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions xs/src/libslic3r/Config.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "Config.hpp"
#include <stdlib.h> // for setenv()
#include <assert.h>

#if defined(_WIN32) && !defined(setenv) && defined(_putenv_s)
#define setenv(k, v, o) _putenv_s(k, v)
Expand Down
1 change: 1 addition & 0 deletions xs/src/libslic3r/Flow.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "Flow.hpp"
#include <cmath>
#include <assert.h>

namespace Slic3r {

Expand Down
1 change: 1 addition & 0 deletions xs/src/libslic3r/Geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <map>
#include <set>
#include <vector>
#include <assert.h>

#ifdef SLIC3R_DEBUG
#include "SVG.hpp"
Expand Down
1 change: 1 addition & 0 deletions xs/src/libslic3r/MotionPlanner.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "BoundingBox.hpp"
#include "MotionPlanner.hpp"
#include <limits> // for numeric_limits
#include <assert.h>

#include "boost/polygon/voronoi.hpp"
using boost::polygon::voronoi_builder;
Expand Down

0 comments on commit c0248de

Please sign in to comment.