Skip to content

Commit 0e9df67

Browse files
authored
style(clang-tidy): fix performance-no-automatic-move (#1766)
Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent 663ce75 commit 0e9df67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/jsonschema/jsonschema.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ auto sourcemeta::core::identify(
100100
return default_id;
101101
}
102102

103-
const auto result{identify(schema, maybe_base_dialect.value(), default_id)};
103+
auto result{identify(schema, maybe_base_dialect.value(), default_id)};
104104

105105
// A last shot supporting identifiers alongside `$ref` in loose mode
106106
if (!result.has_value() && strategy == SchemaIdentificationStrategy::Loose) {

0 commit comments

Comments
 (0)