CppJson icon indicating copy to clipboard operation
CppJson copied to clipboard

轻量级C++对象序列化框架,同时支持部分运行时反射

Results 2 CppJson issues
Sort by recently updated
recently updated
newest added

msvc无法编译,C++11使用需要大量修改。 可以用宏来区分一下版本和平台

平台:macOS 编译器:c++20 clang/gcc 都试过 用c++17的时候会报一个auto错误 ``` ./lang/utils.h:184:44: error: 'auto' not allowed in function prototype inline auto for_each_element(Object&object,auto&&callback) //对于每一个元素进行遍历 ``` https://github.com/shijunfeng00/CppJson/blob/95b545ca3462c2504a50f469617f1df8320ad877/example.cpp#L25