Skip to content

Commit b311946

Browse files
author
Bernhard Scholz
committed
Missing inline
1 parent eaf5eab commit b311946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/souffle/datastructure/ConcurrentInsertOnlyHashMap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static constexpr uint64_t LargestPrime64 = 18446744073709551557UL;
3838

3939
// Return a prime greater or equal to the lower bound.
4040
// Return 0 if the next prime would not fit in 64 bits.
41-
static uint64_t GreaterOrEqualPrime(const uint64_t LowerBound) {
41+
inline static uint64_t GreaterOrEqualPrime(const uint64_t LowerBound) {
4242
if (LowerBound > LargestPrime64) {
4343
return 0;
4444
}

0 commit comments

Comments
 (0)