Mirrális Dias Santana
Mirrális Dias Santana
Hey @sndth, I thought I wouldn't run into this problem because I was using `get_value()` instead of `as_int()`, but if my ID has 20 digits (most significant bit set to...
It's that value times 2: you can see in the print the most significant bit is not set. Edit: Ah, it doesn't necessarily need to have 20 digits. Just be...
Looking at the source code, I see the problem. Internally, `get_value()` calls `as_int()`: ```cpp struct from_node_int_helper { /// @brief Convert node's integer value to the target integer type. /// @param...
@ChrisThrasher As I mentioned, I only modified the CMakeLists.txt in order to build the examples, and modifying the src code is definitely not the right approach. Copying and pasting the...
As for the bug label, on the beginning I thought it was a bug due to the innumerous warnings I was getting and there was no message about what was...