-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scalar transforms to list #2000
Labels
Comments
Is that the exact code you run or are there some brace initializations somewhere? |
it is copypaste. |
ups. i've found my bug. sorry. |
there was wrong typedef typedef vr::jsn::Packet json; where class Packet : public detail::json
{
public:
Packet() = default;
Packet(Packet const&) = delete;
Packet& operator =(Packet&& p) = default;
Packet(detail::json&& j)= default;
}; right typedef typedef nlohmann::json json; has fixed bug. remote work so remote. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
code:
g++ 7.2 output:
MSVC 2017 with default c++ standard setting and "ISO C++14 Standard (/std:c++14)" output:
The text was updated successfully, but these errors were encountered: