summaryrefslogtreecommitdiffstats
path: root/src/rule.hpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-04-11 03:18:22 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-04-11 03:18:22 +0200
commit1a79d217af4b7403b6567c269bf115bb1fad9495 (patch)
treeb9c07942a0ba592e1ab2b17cede2fac82a2314a1 /src/rule.hpp
parentd91b60407ce812de60f0700ffc15712cb9a05d15 (diff)
downloadsolar-1a79d217af4b7403b6567c269bf115bb1fad9495.tar
solar-1a79d217af4b7403b6567c269bf115bb1fad9495.zip
Allow skipping the destructor selectively
Diffstat (limited to 'src/rule.hpp')
-rw-r--r--src/rule.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rule.hpp b/src/rule.hpp
index 5b85ced..2779dba 100644
--- a/src/rule.hpp
+++ b/src/rule.hpp
@@ -33,7 +33,7 @@ namespace solar {
struct rule_t {
item_t item;
- std::vector<std::string> variables;
+ std::vector<std::pair<std::string, bool>> variables;
std::string action;
};