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-12-19 18:48:14 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-19 18:48:14 +0300
commita402b1b83dced4a8e6a23ff1c6ac0a8e82a5a63a (patch)
tree2eb1d9c279563db6f6164dec7b6a20d35b91fabe /xs/src/libslic3r/PlaceholderParser.hpp
parent6b81f43206b1a83b4bc8d6d830b31f7c9c477cc2 (diff)
Implemented <,>,<=,>=,or,and,||,&& operators.
Diffstat (limited to 'xs/src/libslic3r/PlaceholderParser.hpp')
-rw-r--r--xs/src/libslic3r/PlaceholderParser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/PlaceholderParser.hpp b/xs/src/libslic3r/PlaceholderParser.hpp
index ec2b837ad..4e0aa9ee2 100644
--- a/xs/src/libslic3r/PlaceholderParser.hpp
+++ b/xs/src/libslic3r/PlaceholderParser.hpp
@@ -35,7 +35,7 @@ public:
// Evaluate a boolean expression using the full expressive power of the PlaceholderParser boolean expression syntax.
// Throws std::runtime_error on syntax or runtime error.
- static bool evaluate_boolean_expression(const std::string &templ, const DynamicConfig &config);
+ static bool evaluate_boolean_expression(const std::string &templ, const DynamicConfig &config, const DynamicConfig *config_override = nullptr);
private:
DynamicConfig m_config;