Skip to content

Commit

Permalink
Change to use std::vector<char>
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire committed Oct 18, 2023
1 parent 1454989 commit 4423fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/realm/object-store/util/bson/bson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ Bson dom_elem_to_bson(const Json& json)
case Json::value_t::boolean:
return Bson(json.get<bool>());
case Json::value_t::binary: {
std::vector<Bson> out;
std::vector<char> out;
for (auto&& elem : json.get_binary()) {
out.push_back(elem);
}
Expand Down

0 comments on commit 4423fdb

Please sign in to comment.