diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-05 20:46:23 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-05 20:46:23 (GMT) |
commit | 2401964449ca956ac90cecaf05f2befd5650eb97 (patch) | |
tree | a6b565cc582c83e7ce178d92b90c665c06c3798f /src | |
parent | 3bda58a7b7b4f9094c2fcb2bad71c7174367605e (diff) | |
download | Doxygen-2401964449ca956ac90cecaf05f2befd5650eb97.zip Doxygen-2401964449ca956ac90cecaf05f2befd5650eb97.tar.gz Doxygen-2401964449ca956ac90cecaf05f2befd5650eb97.tar.bz2 |
remove noexcept from parser interface for better portability
Diffstat (limited to 'src')
-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)) { } |