We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a40d8f commit 2bb815fCopy full SHA for 2bb815f
src/GraphQLResponse.cpp
@@ -639,7 +639,7 @@ Value::Value(Type type /* = Type::Null */)
639
break;
640
641
case Type::ID:
642
- _data = { IdType { IdType::ByteData {} } };
+ _data = { IdType {} };
643
644
645
case Type::Scalar:
@@ -739,7 +739,7 @@ Value::Value(const Value& other)
739
copy.push_back(Value { other[i] });
740
}
741
742
- _data = { ListType { std::move(copy) } };
+ _data = { std::move(copy) };
743
744
745
0 commit comments