sndth

Results 10 comments of sndth

Thank you, but - why spdlog doesn't have fixed version?

Hi! I've created a [pull request](https://github.com/fktn-k/fkYAML/pull/408) where I will be adding documentation fixes (only in the source code, meaning in strings and comments).

Hello, I'll try to deal again with this issue, if I succeed I'll let you know!

Hi @Sebight, I have good news. I managed to [add basic support for unsigned numbers](https://github.com/sndth/fkYAML/tree/support_unsigned). For now, it works only with `to_node`, so `from_node` might still be an issue, but...

Hello @Sebight. Did you tested my branch? Thank you 😄

Hello @MirrasHue, thanks for you report! Currently I recommend using as_uint() from my branch. I'll take a look into the get_value function. Of course, this is a bug :(

> Hey [@sndth](https://github.com/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...

Hi! Thank you for reporting! This (probably) isn't a bug in the library, but a result of how different compilers handle move semantics: ```cpp const fkyaml::node b{ fkyaml::node::mapping()}; ``` `GCC`...

Hi! Sorry for the long wait! 😅 I've prepared a fix for `GCC` so that braced-init behaves like `MSVC` for empty collections. With this patch, both: ```cpp const node a...