From 5ba9fd0461693ba15bb0889622350aa0762f97d8 Mon Sep 17 00:00:00 2001 From: paul Date: Sun, 4 Aug 2019 22:26:31 +0200 Subject: [PATCH] Added a way to disable the include guard in the parser --- sources/ParserMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/ParserMain.cpp b/sources/ParserMain.cpp index 29650257..d3868645 100644 --- a/sources/ParserMain.cpp +++ b/sources/ParserMain.cpp @@ -14,7 +14,7 @@ public: int getNumMasters() const noexcept { return numMasters; } int getNumCurves() const noexcept { return numCurves; } protected: - void callback(std::string_view header, std::vector members) final + void callback(std::string_view header, std::vector members [[maybe_unused]]) final { switch (hash(header)) {