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>2017-11-26 13:52:44 +0300
committerbubnikv <bubnikv@gmail.com>2017-11-26 13:52:44 +0300
commit571d654e67896d10ea760ca62c092ae239bc3262 (patch)
treeabcbf5b9e1b7bd975e1a6673d16a35e0e6656414
parent5c3ba79c6f9ded60930670d2b03d42d3840c731e (diff)
Placeholder parser - added a comment with a reference to a C grammar.CPP_presets
-rw-r--r--xs/src/libslic3r/PlaceholderParser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/PlaceholderParser.cpp b/xs/src/libslic3r/PlaceholderParser.cpp
index 39d775e89..ace63a4b5 100644
--- a/xs/src/libslic3r/PlaceholderParser.cpp
+++ b/xs/src/libslic3r/PlaceholderParser.cpp
@@ -588,6 +588,7 @@ namespace client
///////////////////////////////////////////////////////////////////////////
// Our calculator grammar
///////////////////////////////////////////////////////////////////////////
+ // Inspired by the C grammar https://www.lysator.liu.se/c/ANSI-C-grammar-y.html
template <typename Iterator>
struct calculator : qi::grammar<Iterator, std::string(const MyContext*), spirit::ascii::space_type>
{