ollydbg

Results 288 comments of ollydbg

> Indeed. > > It was not the best approach. > > Now you have to write > > parse_context default_symbol_comparator_type> > > I have written a very detailed explanation...

``` class cpp_parser_grammar { public: using lexer_grammar = cpp_lexer_grammar; enum class match_id_type { VAR_DECL, FUNC_DECL, FUNC_DEF, BLOCK, BLOCK_SKIP, // skipped function bodies CLASS_DEF, CLASS_ID, TOP_LEVEL, EXPRESSION_STATEMENT, FOR_LOOP, CONTROL_FLOW, PARAM_LIST, ENUM_DEF,...

> You can always use your custom source type. For example: > > using my_parse_context = parserlib::parse_context MyMatchId, MyErrorId>; > > The method 'derive_parse_context' is used as a helper method...

I have hard time to solve the build issue. I can just upload the 3 files: 1 header file, and 2 cpp files in a code.zip file. The error message...

> Perhaps you should enable rtti? There are messages that type info is > missing. As far as I know, the g++ has enabled rtti option by default.

``` template bool do_catch_loop_break(const F& f, const bool result_on_break = true) { try { return f(); } catch (loop_break_exception ex) { if (ex.levels > 1) { throw loop_break_exception{ ex.levels -...

``` diff --git a/include/parserlib/choice_parse_node.hpp b/include/parserlib/choice_parse_node.hpp index ed4be59..a1c9ef8 100644 --- a/include/parserlib/choice_parse_node.hpp +++ b/include/parserlib/choice_parse_node.hpp @@ -17,9 +17,12 @@ namespace parserlib { * Base class for choice parse nodes. */ class choice_parse_node_base {...

AI told me that my rule in the lexer_grammar cpp file: ``` return *( skip_element >> token >> skip_element ); ``` is bad. But those rules were correct and works...

> Can I see your full code somewhere? I cannot understand why you are doing a > return, have you written your own parsing functions? > […](#) Hi, the complete...

Hello, I'd like to ask a question about how to modify the svg image at runtime. I mean the lunasvg library support modify or apply the styles, such as the...