File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 27
27
class java_bytecode_parsert final : public parsert
28
28
{
29
29
public:
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)
32
34
{
33
35
}
34
36
@@ -1809,9 +1811,9 @@ std::optional<java_bytecode_parse_treet> java_bytecode_parse(
1809
1811
message_handlert &message_handler,
1810
1812
bool skip_instructions)
1811
1813
{
1812
- java_bytecode_parsert java_bytecode_parser (skip_instructions);
1814
+ java_bytecode_parsert java_bytecode_parser (
1815
+ skip_instructions, message_handler);
1813
1816
java_bytecode_parser.in =&istream;
1814
- java_bytecode_parser.log .set_message_handler (message_handler);
1815
1817
1816
1818
bool parser_result=java_bytecode_parser.parse ();
1817
1819
You can’t perform that action at this time.
0 commit comments