diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-06 15:18:53 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-06 15:18:53 -0500 |
| commit | e02742b07540dd5a9bcbb44dae14856bf10955ed (patch) | |
| tree | 839533401683d6ae875adbf7af2ee4c0d0f5e483 /include/framework | |
| parent | 0b723322a611de83872dd83b55d2e10e8886a283 (diff) | |
| download | dynamic-extension-e02742b07540dd5a9bcbb44dae14856bf10955ed.tar.gz | |
Refactoring progress
Diffstat (limited to 'include/framework')
| -rw-r--r-- | include/framework/interface/Shard.h | 2 |
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>; -} +}; } |