Larry Evans
Larry Evans
I agree with this, but I've got a slightly more complicated conversion. My config file has: ```jason { "genericReplacements":{ "vector":"vector" } } ``` which works OK: ``` echo "vector"|camomilla -c"camomilla_config.json"...
+5. I'm currently trying to do this with data_val defined here: https://gist.github.com/cppljevans/d5ebf19a14d79409e4e7 However, after making several tries, I still get obscure compile error messages: In file included from data_val.cpp:4: In...
On 07/15/2015 01:37 PM, Louis Dionne wrote: > ``` > template > struct value_impl { > template > static constexpr auto apply() > { return T::value; } > }; >...
Does this also solve https://github.com/boostorg/spirit/issues/707 ? Test case for 707 is located here: https://github.com/cppljevans/spirit-experiments/blob/develop/test/x3/issue707.cpp
> Does this also solve #707 ? Test case for 707 is located here: https://github.com/cppljevans/spirit-experiments/blob/develop/test/x3/issue707.cpp Apparently it doesn't solve https://github.com/boostorg/spirit/issues/707 because when I tried compiling the issue707.cpp test case, I...
Nikita, intractabilis: I have investigated this and found a solution, although one that's probably not very palatable. Here's the code: //OriginalSource: // copy&pasted on 2021-12-29.0553CST from 1st code listing here:...
In addition, redefining the move_to to just print the values shows that the parser parses all the values but attempts to move them all to a LogData instead of the...
The problem is solved by changing is_substitute.hpp as shown below: ```` -*- mode: compilation; default-directory: "~/prog_dev/boost.org/boost.replacements/examples/realworld/issue707/" -*- Compilation started at Tue Jan 25 09:45:34 make -k --always-make show-diff run diff...
On 4/19/2022 5:34 PM, intractabilis wrote: > The problem is solved by changing is_substitute.hpp as shown below: > > @cppljevans , this change breaks > another perfectly legit code, see...
intractabilis, I've just uploaded to here: https://github.com/cppljevans/boost.exploratory/tree/main/boost.additions the first part of the code you might help with. It's sole purpose is to make it easier to understand compiler error messages...