summaryrefslogtreecommitdiffstats
path: root/src/parserintf.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-05 20:46:23 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-05 20:46:23 (GMT)
commit2401964449ca956ac90cecaf05f2befd5650eb97 (patch)
treea6b565cc582c83e7ce178d92b90c665c06c3798f /src/parserintf.h
parent3bda58a7b7b4f9094c2fcb2bad71c7174367605e (diff)
downloadDoxygen-2401964449ca956ac90cecaf05f2befd5650eb97.zip
Doxygen-2401964449ca956ac90cecaf05f2befd5650eb97.tar.gz
Doxygen-2401964449ca956ac90cecaf05f2befd5650eb97.tar.bz2
remove noexcept from parser interface for better portability
Diffstat (limited to 'src/parserintf.h')
-rw-r--r--src/parserintf.h2
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))
{
}