summaryrefslogtreecommitdiffstats
path: root/include/framework/interface/Shard.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework/interface/Shard.h')
-rw-r--r--include/framework/interface/Shard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/interface/Shard.h b/include/framework/interface/Shard.h
index 40a696b..92cdca0 100644
--- a/include/framework/interface/Shard.h
+++ b/include/framework/interface/Shard.h
@@ -37,6 +37,6 @@ template <typename S, typename R>
concept SortedShardInterface = ShardInterface<S> && requires(S s, R r, R *rp) {
{s.lower_bound(r)} -> std::convertible_to<size_t>;
{s.upper_bound(r)} -> std::convertible_to<size_t>;
-}
+};
}