Skip to content

Commit 2eb9498

Browse files
committed
Fix missing inline for to_string_10 function.
1 parent bd75d42 commit 2eb9498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/include/versioned/versioned.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ std::size_t hash_combine(std::size_t seed, N... an)
7777
}
7878

7979
// Backfill to_string as it's missing on some runtimes.
80-
std::string to_string_10(std::size_t value)
80+
inline std::string to_string_10(std::size_t value)
8181
{
8282
std::string result;
8383
result.reserve(30);

0 commit comments

Comments
 (0)