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 70df45e commit 45cb3a9Copy full SHA for 45cb3a9
src/core/jsonl/iterator.cc
@@ -104,7 +104,7 @@ ConstJSONLIterator::ConstJSONLIterator(
104
std::basic_istream<JSON::Char, JSON::CharTraits> *stream)
105
: data{stream}, internal{new Internal({this->parse_next()})} {}
106
107
-ConstJSONLIterator::~ConstJSONLIterator() {}
+ConstJSONLIterator::~ConstJSONLIterator() = default;
108
109
auto operator==(const ConstJSONLIterator &left, const ConstJSONLIterator &right)
110
-> bool {
src/core/jsonschema/resolver.cc
@@ -5,7 +5,7 @@
5
6
namespace sourcemeta::core {
7
8
-SchemaMapResolver::SchemaMapResolver() {}
+SchemaMapResolver::SchemaMapResolver() = default;
9
10
SchemaMapResolver::SchemaMapResolver(const SchemaResolver &resolver)
11
: default_resolver{resolver} {}
0 commit comments