struct_mapping
struct_mapping copied to clipboard
Only to say that...
Only to say that this is a nice library!!!
It can be compatible with c++ 11?
Thanks.
Unfortunately c++17 is required. This is needed for 'static inline'(this is a header-only library) and 'if constexpr'
If I step down in VS 2019 to "Platform Toolset: Visual Studio 2017 (v141)" while using /std:c++17, I get cast to function type is illegal
at using Init = void();
. I failed playing/googling around (not being to deep in latest c++ stuff anymore) - could that be worked around?
If I step down in VS 2019 to "Platform Toolset: Visual Studio 2017 (v141)" while using /std:c++17, I get
cast to function type is illegal
atusing Init = void();
. I failed playing/googling around (not being to deep in latest c++ stuff anymore) - could that be worked around?
sorry, I hate asking questions and come up with a solution myself (leave it here as comment): /Zc:twoPhase-
did the trick