-
I would like to parse such text:
```
config {
foo: 0
bar: 1 {
bar_child: 11
bar_child2: 12
}
quux: 2
}
```
```cpp
#include
#include
#include
#include
namespace x3 = b…
-
For a `def` like (https://github.com/extbit/mold/blob/aa0fe70e75d2dfb56915b8307728448d376660a9/include/mold/domain/tildache/parser_def.hpp#L151):
```c++
auto const tild_see_section_def =
…
-
This is really weird and I cannot explain what's happening here. Possibly I'm stupid and not seeing something obvious, but I don't think that's the case. Here's an example of what I'm trying to do:
…
-
The following used to work as expected in Boost 1.69, but broke from 1.70 (and is still broken in 1.71b1rc1):
```
#include
#include
#include
#include
namespace x3 = boost::spirit::x3;
t…
-
I am trying to use `x3` and `karma` in the same file. It compiles ok before adding the karma header
```cpp
#include
```
once included, it generates the following errors. It looks to me likes nam…
-
I am implements a protocol that sends/receives float/double across the network.
I could use `karma::big_bin_double`, `karma::big_bin_double' to convert them to binary representation.
However, i…
-
This problem originates from https://stackoverflow.com/questions/48390872 (not my question).
SO attempt: http://coliru.stacked-crooked.com/a/56007d3f997b9748
My attempt: http://coliru.stacked-cr…
-
Here a rule that complies OK with clang under Linux, but fails with pages of error with MSVC 2019/Windows/Boost 1.70.
- ast:
```cpp
struct mid0061_data_rev1 : mid_base
{
std::uint32_t cell_i…
-
given this grammar :
```cpp
const auto grammar_def = x3::lit("start")
> x3::lit("{")
> (*(char_("a-zA-Z0-9\".{}=_~")))
> x3…
-
```
Python 3.7.5 (default, Nov 20 2019, 09:21:52)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
? -> Introduction and o…