Skip to content

Commit 2bb815f

Browse files
committed
Minor cleanup of unneeded/obsolete edits
1 parent 7a40d8f commit 2bb815f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GraphQLResponse.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ Value::Value(Type type /* = Type::Null */)
639639
break;
640640

641641
case Type::ID:
642-
_data = { IdType { IdType::ByteData {} } };
642+
_data = { IdType {} };
643643
break;
644644

645645
case Type::Scalar:
@@ -739,7 +739,7 @@ Value::Value(const Value& other)
739739
copy.push_back(Value { other[i] });
740740
}
741741

742-
_data = { ListType { std::move(copy) } };
742+
_data = { std::move(copy) };
743743
break;
744744
}
745745

0 commit comments

Comments
 (0)