Bump to 5.8.5

- remove parsing of unary &, it was unused
This commit is contained in:
Jason Turner
2016-10-06 22:32:55 -06:00
parent d1c7645a4e
commit 665125665a
5 changed files with 8 additions and 4 deletions

View File

@@ -2164,7 +2164,7 @@ namespace chaiscript
/// Reads a unary prefixed expression from input
bool Prefix() {
const auto prev_stack_top = m_match_stack.size();
const std::vector<std::string> prefix_opers{"++", "--", "-", "+", "!", "~", "&"};
const std::vector<std::string> prefix_opers{"++", "--", "-", "+", "!", "~"};
for (const auto &oper : prefix_opers)
{