Yurii Nakonechnyi
Yurii Nakonechnyi
Wow, it's amazing @perigoso, @LiamBindle ! I'm experimenting with mqtt-over-websockets and webassembly (via emscripten), and found that this library perfectly suitable for it (mqtt client running in browser, written in...
Hello! I encountered the same error on `Windows 10` + `MinGW 8.1.0 64-bit` + `CMake 3.24.2`, I'm using `MQTTAsync` client, from `paho.mqtt.c-1.3.13`. `CMakeLists.txt`: ```cmake set(PAHO_BUILD_SHARED FALSE) set(PAHO_BUILD_STATIC TRUE) add_subdirectory( ${CMAKE_CURRENT_SOURCE_DIR}/../third_party/paho/paho.mqtt.c-1.3.13/...
Similar issue I spotted, when call `rea::slot_map::clear()`. For example: ```cpp rea::slot_map s {}; s.clear(); ``` `g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0`, `--std=c++11` - compilation error: ``` In file included from ./main.cpp:99: ./example/third_party/Rea-master/Rea/rea.h:...
I think, that pure C public interface (for FFI) is a key for making bindings for various other languages. It is common solution/strategy implemented in many projects, even in Yoga...
@calvin2021y Greetings! Probably it was resolved in (issue https://github.com/warmcat/libwebsockets/issues/3002) (commit https://github.com/warmcat/libwebsockets/commit/48e09ddf51ea014a60d666f8eb780cd801c0d4b5)
@dalerank I see this warning on 2 machines (both have different versions of `Kubuntu`); when try to 'edit' your repository and own fork; in both Firefox `114.0.2` and Google Chrome...
@Thalenberghen since you use `SDL2` backend, you can try to add `printf(stdout, "wheel x=%f, y=%f\n", wheel_x, wheel_y); fflush(stdout);` to see what wheel x/y offsets passed into `Dear ImGui`. Put it...
+1 I have error on `gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0`. @tenxer-roy thanks for the fix!
@ocornut both tree styles looks awesome! I think its one of the **most wanted** feature, when we use **tree view** in any kind of custom editors. Its looks really as...
@nicoburns greetings! For inspiration I can show 'bindings from alternate universe' (from cpp world): - C bindings: https://github.com/inobelar/taffy_cpp_bindings/blob/8ca225aebec76c1df8bfcbc94f643e012c38b034/c/include/taffy_cpp_c.h - Lua bindings: https://github.com/inobelar/taffy_cpp_bindings/blob/8ca225aebec76c1df8bfcbc94f643e012c38b034/lua/tests/test.lua#L3598 You may be confused that everything is in...