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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-11-26 23:23:18 +0300
committerbubnikv <bubnikv@gmail.com>2017-11-26 23:23:18 +0300
commitbb2b180ecc9d3e3dad063c87e9054ee0829ca9a8 (patch)
tree570823f8cbe73c5adf08d07174372459bb3d935b /xs/src/libslic3r/PlaceholderParser.cpp
parentb54a15faa2304f9d4326379e3a13a368d3464418 (diff)
Fixed G-code export of custom G-code sections to not add a newline
if the custom G-code already ends with a newline.
Diffstat (limited to 'xs/src/libslic3r/PlaceholderParser.cpp')
-rw-r--r--xs/src/libslic3r/PlaceholderParser.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/xs/src/libslic3r/PlaceholderParser.cpp b/xs/src/libslic3r/PlaceholderParser.cpp
index 655913d90..fbe8572d5 100644
--- a/xs/src/libslic3r/PlaceholderParser.cpp
+++ b/xs/src/libslic3r/PlaceholderParser.cpp
@@ -597,16 +597,11 @@ namespace client
using namespace qi::labels;
qi::alpha_type alpha;
qi::alnum_type alnum;
- qi::eol_type eol;
- qi::eoi_type eoi;
qi::eps_type eps;
- qi::omit_type omit;
qi::raw_type raw;
qi::lit_type lit;
qi::lexeme_type lexeme;
- qi::skip_type skip;
qi::no_skip_type no_skip;
- qi::uint_type uint_;
qi::real_parser<double, strict_real_policies_without_nan_inf> strict_double;
spirit::ascii::char_type char_;
spirit::bool_type bool_;