diff options
author | ZyX <kp-pav@yandex.ru> | 2017-10-16 09:06:05 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-10-16 09:06:05 +0300 |
commit | c9f511d24a64da135bef4b9874c7bec04d9330e4 (patch) | |
tree | 4918877e0c09450e480f78b85aa55c1de20ca0e6 /src/nvim/viml/parser/expressions.h | |
parent | 8e856ebcd0357c8782d6825a233a5c800475f396 (diff) | |
download | rneovim-c9f511d24a64da135bef4b9874c7bec04d9330e4.tar.gz rneovim-c9f511d24a64da135bef4b9874c7bec04d9330e4.tar.bz2 rneovim-c9f511d24a64da135bef4b9874c7bec04d9330e4.zip |
viml/parser/expressions: Remove unused flag
Diffstat (limited to 'src/nvim/viml/parser/expressions.h')
-rw-r--r-- | src/nvim/viml/parser/expressions.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/viml/parser/expressions.h b/src/nvim/viml/parser/expressions.h index 025f0f766e..d783518b3a 100644 --- a/src/nvim/viml/parser/expressions.h +++ b/src/nvim/viml/parser/expressions.h @@ -314,10 +314,6 @@ enum { /// When parsing expressions input by user bar is assumed to be a binary /// operator and other two are spacings. kExprFlagsDisallowEOC = (1 << 1), - /// Print errors when encountered - /// - /// Without the flag they are only taken into account when parsing. - kExprFlagsPrintError = (1 << 2), // WARNING: whenever you add a new flag, alter klee_assume() statement in // viml_expressions_parser.c. } ExprParserFlags; |