Tibor Harsszegi
Tibor Harsszegi
Hello, is it possible to add a web::json function which would control how doubles in _Number are converted to string? E.g. instead of using the biggest possible precision (std::numeric_limits::digits10 +...
Hello, the following fails on VS 2019 using microsecDouble = std::chrono::duration; auto microsecDoubleType = ::rttr::type::get(); with foo.cpp c:\workspace\rttr\include\rttr/detail/type/type_data.h(331,1): error C2752: 'rttr::detail::template_type_trait': more than one partial specialization matches the template argument...
Hello, compiled system.img for Fireprime RK3128, but not even uboot starts (Minicom shows nothing) Please advise. Thanks,
Hi, I have the following class: #include #include template class Foo { public: Foo(const std::shared_ptr & foo) : foo_{foo} {} Foo(const std::variant & bar) : bar_{bar} {} private: std::shared_ptr foo_;...
Hi, does CppAst support friend functions defined within the class itself? E.g. something like this: class Foo { public: friend bool operator==(const Foo & lhs, const Foo & rhs); };...
Hi, sorry for being lame but I can't put together a complete working example with pybind11_json. Here is what I need to do: 1.) I have a native C++ class...
If you wish to allow only certain portions of a background image to be scratched, you might want to define clipping regions. This is practically can be achieved via loading...
Hello, missing proper zmq.hpp setup when building the static library, missing ZMQ_STATIC define. Please modify CMakeLists.txt like this: if (ZMQPP_BUILD_STATIC) add_library( zmqpp-static STATIC ${LIBZMQPP_SOURCES}) **add_definitions(-DZMQ_STATIC)** target_link_libraries(zmqpp-static ZeroMQ::libzmq-static) list( APPEND INSTALL_TARGET_LIST...
Hi, I'm trying to wrap my head around how the enums are exposed with embind. Is there a documentation which provides a basic ".d.ts"-kinda description how is the ""class" structured,...
ISSUE-16785: Issue with 'automatic' compatible packages and custom package ids In case the recipe uses its own package_id() and compatible packages are generated automatically (e.g. Visual Studio vs msvc), then...