aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-05-21 16:27:40 +0100
committergingerBill <bill@gingerbill.org>2020-05-21 16:27:40 +0100
commitd09ac8943ac38b955e9a10d22e5c2f3fba8e7eaa (patch)
treeb1c8ec516f93d0c15eef14812442bda09c3d750c /src/parser.hpp
parent8e63c943939619cb74266ff43a0cff20293d5b70 (diff)
Minor fixes to improve hash map/set performance
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 7cb380ffb..bfe290c8f 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -167,7 +167,7 @@ enum ProcInlining {
enum ProcTag {
ProcTag_bounds_check = 1<<0,
ProcTag_no_bounds_check = 1<<1,
-
+
ProcTag_require_results = 1<<4,
ProcTag_optional_ok = 1<<5,
};