diff options
Diffstat (limited to 'src/parserintf.h')
-rw-r--r-- | src/parserintf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parserintf.h b/src/parserintf.h index 4be8aee..ddf2624 100644 --- a/src/parserintf.h +++ b/src/parserintf.h @@ -162,7 +162,7 @@ class ParserManager struct ParserPair { ParserPair(std::unique_ptr<OutlineParserInterface> oli, - std::unique_ptr<CodeParserInterface> cpi) noexcept + std::unique_ptr<CodeParserInterface> cpi) : outlineParser(std::move(oli)), codeParser(std::move(cpi)) { } |