File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 2727class java_bytecode_parsert final : public parsert
2828{
2929public:
30- explicit java_bytecode_parsert (bool skip_instructions)
31- : skip_instructions(skip_instructions)
30+ java_bytecode_parsert (
31+ bool skip_instructions,
32+ message_handlert &message_handler)
33+ : parsert(message_handler), skip_instructions(skip_instructions)
3234 {
3335 }
3436
@@ -1809,9 +1811,9 @@ std::optional<java_bytecode_parse_treet> java_bytecode_parse(
18091811 message_handlert &message_handler,
18101812 bool skip_instructions)
18111813{
1812- java_bytecode_parsert java_bytecode_parser (skip_instructions);
1814+ java_bytecode_parsert java_bytecode_parser (
1815+ skip_instructions, message_handler);
18131816 java_bytecode_parser.in =&istream;
1814- java_bytecode_parser.log .set_message_handler (message_handler);
18151817
18161818 bool parser_result=java_bytecode_parser.parse ();
18171819
You can’t perform that action at this time.
0 commit comments