
Baptiste Lepilleur wrote:
I'm currently look into this library to see if it is possible to do some source to source transformation. For this I need correct line/column information. Using the slex based lexer, I found that it did not return correct line/column (end of token instead of start). The following change fixes this issue: in cpp_slex_lexer.hpp, slex_functor::get (line ~500)
PositionT const &pos = first.get_position();
=> PositionT pos = first.get_position();
Thanks for the fix.
I also noted the following typo in class_reference_contextpolicy.html: "his policy type is used as a template parameter to the wave::context<> object, where the default policy proviedes empty hooks functions only." proviedes => *provides*
Noted. Regards Hartmut