File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/bsoncxx/v_noabi/bsoncxx
lib/bsoncxx/v_noabi/bsoncxx Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ BSONCXX_ABI_EXPORT_CDECL(document::value) from_json(stdx::string_view json);
8282// /
8383// / @throws bsoncxx::v_noabi::exception with error details if the conversion failed.
8484// /
85- BSONCXX_ABI_EXPORT_CDECL (document::value) operator " " _bson(char const * json, size_t len);
85+ BSONCXX_ABI_EXPORT_CDECL (document::value) operator " " _bson(char const * json, size_t len);
8686
8787} // namespace v_noabi
8888} // namespace bsoncxx
@@ -92,7 +92,7 @@ namespace bsoncxx {
9292using ::bsoncxx::v_noabi::from_json;
9393using ::bsoncxx::v_noabi::to_json;
9494
95- using ::bsoncxx::v_noabi::operator " " _bson;
95+ using ::bsoncxx::v_noabi::operator " " _bson;
9696
9797} // namespace bsoncxx
9898
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ document::value from_json(stdx::string_view json) {
107107 return document::value{buf, length, bson_free_deleter};
108108}
109109
110- document::value operator " " _bson(char const * str, size_t len) {
110+ document::value operator " " _bson(char const * str, size_t len) {
111111 return from_json (stdx::string_view{str, len});
112112}
113113
You can’t perform that action at this time.
0 commit comments