Frank Aurich
Frank Aurich
The function `findFirstSetBitZeroIdx()` does not work correctly for small (
When creating objects that contain array members, we currently have to explicitly set the number of elements in the array, even though the count is implictly available internally. ``` struct...
In C++, calling `Object::write()` will initialize any child objects if not already done explicitly, but calling `Object::bitSizeOf()` does not. For objects that need to be initialized, the initialization values should...
For objects that need to be initialized, the initialization values should be part of the constructor. Currently, you can create such objects just fine, but when trying to write them...
Hi, I'm trying to use libosmscout's `MapService` to fetch map data (specifically, ways) in a tile-based manner. But, results show that the method not only produces features within the bounds...
## The problem Calling `small::string::substr(pos, count)` with a `count` value larger than the size of the string causes a segfault. According to the documentation, if `count` is larger than the...