summaryrefslogtreecommitdiff
path: root/src/options/module_template.cpp
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@cs.rwth-aachen.de>2021-04-28 20:32:42 +0200
committerGitHub <noreply@github.com>2021-04-28 18:32:42 +0000
commitfc0512b6d13349a91da5ac6617acebc41cbd238c (patch)
tree4c15847678156e3cf88bacf3a380a6ea94007c0c /src/options/module_template.cpp
parent0683b708c4752c1d0e894f19e8011a256ef6df7e (diff)
Remove exception headers from options.h (#6456)
This PR removes two headers for exceptions from options.h, and instead pushes the includes to a couple of source files.
Diffstat (limited to 'src/options/module_template.cpp')
-rw-r--r--src/options/module_template.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options/module_template.cpp b/src/options/module_template.cpp
index 0de77e8a6..e0b3f79d1 100644
--- a/src/options/module_template.cpp
+++ b/src/options/module_template.cpp
@@ -16,17 +16,17 @@
* expands this template and generates a <module>_options.cpp file.
*/
-#include "options/options_holder.h"
-#include "base/check.h"
-
#include <iostream>
+#include "base/check.h"
+#include "options/option_exception.h"
+#include "options/options_holder.h"
+
// clang-format off
namespace cvc5 {
${accs}$
-
namespace options {
${defs}$
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback