rttr icon indicating copy to clipboard operation
rttr copied to clipboard

C++ Reflection Library

Results 139 rttr issues
Sort by recently updated
recently updated
newest added

For compiling under WebAssembly with the wasi-sdk / wasi-libc. Even though the platforms have many POSIX functions implemented, they do not have dlopen etc. This checks if the header exists,...

Compiling to WebAssembly with the wasi-sdk which uses wasi-libc, and has no thread support implemented yet. If there's a better way to do this let me know, as I attempted...

Hello, Is there a way to create a variant of std::vector? explained by following code: ``` rttr::variant createVectorVariant(const rttr::type& vectorType) { if(vectorType == rttr::type::get()) { return rttr::variant(std::vector()); } else if(vectorType...

Hi guys, I try to develop using the rttr library. Would you let me know the solution? * OS : cygwin64 * Order : 1. $cmake . --> I had...

I'm trying to automatically bind registered enums (`rttr::registration::enumeration`) via pybind, which wants compile-time type information. It seems that when I call `rttr::visitor::visit` on a type where `is_enumeration() == true`, then...

so considering tihs use case: ``` // .h class I_Base { RTTR_ENABLE() }; template class I_CrtpBase : public I_Base { RTTR_ENABLE(I_Base) }; class MyClass : public I_CrtpBase { RTTR_ENABLE(I_CrtpBase) }...

The following code fails to compile: ``` #include #include template class C1Tpl { }; using C1 = C1Tpl; struct param { }; template class C2Tpl { }; using C2 =...

The implementation of get_template_arguments() in rttr/detail/misc/template_type_trait_impl.h is inconsistent between the and cases - returns `{ ::rttr::type::get(), ::rttr::type::get() }`, i.e. returns `type::get()` for N1 while returns `{ ::rttr::type::get(), ::rttr::type::get(), ::rttr::type::get() }`,...

In my project, I want that warnings are treated as errors. However, if I add the rttr library to my project with `add_subdirectory(rttr)` and then link against it with `target_link_libraries(RTTR::Core_Lib)`,...

I use RTTR in my hobby game engine. My engine is a library that defines various components. I register this components with RTTR_REGISTRATION. This works fine as long as the...