Skip to content

Commit 6f7070c

Browse files
committed
remove merge mistakes
1 parent 4134a15 commit 6f7070c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/goto-cc/as_mode.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ int as_modet::doit()
128128

129129
// determine actions to be undertaken
130130
compilet compiler(cmdline, message_handler, cmdline.isset("fatal-warnings"));
131-
compiler.ui_message_handler.set_verbosity(verbosity);
132131

133132
if(cmdline.isset('b')) // as86 only
134133
{

src/goto-cc/compile.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,7 @@ bool compilet::doit()
117117
const unsigned warnings_before=
118118
get_message_handler().get_message_count(messaget::M_WARNING);
119119

120-
<<<<<<< 0bc503ae07a912ec82d5c337f453520219aac395
121120
if(!source_files.empty())
122-
=======
123-
if(source_files.size()>0)
124-
>>>>>>> HEAD~84
125121
if(compile())
126122
return true;
127123

@@ -648,8 +644,7 @@ bool compilet::parse_source(const std::string &file_name)
648644
/// constructor
649645
/// \return nothing
650646
compilet::compilet(cmdlinet &_cmdline, ui_message_handlert &mh, bool Werror):
651-
language_uit(_cmdline, ui_message_handler),
652-
ui_message_handler(_cmdline, "goto-cc " CBMC_VERSION),
647+
language_uit(_cmdline, mh),
653648
ns(symbol_table),
654649
cmdline(_cmdline),
655650
warning_is_fatal(Werror)

0 commit comments

Comments
 (0)