rpatters1
rpatters1
I have been beating my head against this issue for a while, and perhaps there is something I am missing. It appears that the Casio CZ-101 (and CZ-1000) require the...
I use refl-cpp to shove a C++ class framework into Lua with LuaBridge. The framework cannot be modified easily. Some of the classes have a large number of property setters...
For the Windows compiler I noticed that `fopen_s` is used without an encoding specifier in `LoadFile`. According to the docs that means the file will be encoded ANSI rather than...
In reading #314, it appears that it is not possible to fully iterate an `is_flags` enum that has a zero value. This seems like an unfortunate limitation. I have frequently...
Suppose I have this class: ```c++ class Foo { const char* getPtr(); char* getPtr(); } REFL_AUTO(type(Foo), func(getPtr)) ``` I would like write my code always to resolve the non-const version...
It is easy enough to fix by appending "A" to the affected functions: - `CreateFileA` - `GetFinalPathNameByHandleA` - `CreateHardLinkA` - `CreateSymbolicLinkA` - `GetFileAttributesExA` However, it really depends on what the...
This PR adds a test that illustrates a bug in the `callWithHandler` function. For some reason when this boolean valued Lua function is called, it returns 2 values instead of...
I am getting a compiler error from the following `addProperty` call: ```cpp class foo { int value{}; public: int get_value_cfunc(lua_State* L) const { luabridge::Stack::push(L, value).throw_on_error(); return 1; } int set_value_cfunc(lua_State...
It would be nice if the tagfile produced by Doxygen (for the doc pages) were published. Then I could make direct links from my embedded class browser to class methods....
I just spent the better part of a day trying to figure out why a proxy method I had added to a class was not there on some instances of...