Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-11-01 15:53:28 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-01 15:53:28 +0300
commit0264381f79547b79d7679436893d5973e837111b (patch)
tree803346c47208ce20cd6a0f2f295102e6069006b3
parent3d3654707b97f679037cb66c2143338cf8baf917 (diff)
Missing include for memcpy for Linux.
-rw-r--r--xs/src/libslic3r/Config.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/Config.cpp b/xs/src/libslic3r/Config.cpp
index cdeee4dd8..6d89735b8 100644
--- a/xs/src/libslic3r/Config.cpp
+++ b/xs/src/libslic3r/Config.cpp
@@ -1,6 +1,7 @@
#include "Config.hpp"
#include <stdlib.h> // for setenv()
#include <assert.h>
+#include <string.h>
#if defined(_WIN32) && !defined(setenv) && defined(_putenv_s)
#define setenv(k, v, o) _putenv_s(k, v)