We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d8eb2 commit cdc0b5cCopy full SHA for cdc0b5c
src/libcprover-cpp/api.cpp
@@ -19,17 +19,8 @@
19
20
extern configt config;
21
22
-api_sessiont::api_sessiont()
23
- : message_handler(
24
- util_make_unique<null_message_handlert>(null_message_handlert{})),
25
- options(util_make_unique<optionst>(optionst{}))
+api_sessiont::api_sessiont() : api_sessiont{api_optionst::create()}
26
{
27
- // Needed to initialise the language options correctly
28
- cmdlinet cmdline;
29
- // config is global in config.cpp
30
- config.set(cmdline);
31
- // Initialise C language mode
32
- register_language(new_ansi_c_language);
33
}
34
35
api_sessiont::api_sessiont(const api_optionst &options)
0 commit comments