diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2019-02-14 14:40:11 +0000 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2019-02-14 14:40:11 +0000 |
commit | 1b5e2d110ccdfabd96e7d71f8bd1dd14fb17edce (patch) | |
tree | b7305f6403347e4ccaeadc426dbe2167557c7d9b /libadhocutil/lexer.cpp | |
parent | Enable performance checks (not for tests) (diff) | |
download | libadhocutil-1b5e2d110ccdfabd96e7d71f8bd1dd14fb17edce.tar.bz2 libadhocutil-1b5e2d110ccdfabd96e7d71f8bd1dd14fb17edce.tar.xz libadhocutil-1b5e2d110ccdfabd96e7d71f8bd1dd14fb17edce.zip |
Enable (most) high integrity checks (not for tests)
Diffstat (limited to 'libadhocutil/lexer.cpp')
-rw-r--r-- | libadhocutil/lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libadhocutil/lexer.cpp b/libadhocutil/lexer.cpp index 6c6505f..af339eb 100644 --- a/libadhocutil/lexer.cpp +++ b/libadhocutil/lexer.cpp @@ -6,7 +6,7 @@ namespace AdHoc { Lexer::Lexer() = default; - Lexer::Lexer(const Rules r) : rules(std::move(r)) + Lexer::Lexer(Rules r) : rules(std::move(r)) { } |