1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-03 08:51:40 +00:00

Avoid linkage warning.

This commit is contained in:
Thomas Harte 2024-05-24 15:39:38 -04:00
parent 5235262855
commit b7777c9ca3

View File

@ -19,7 +19,7 @@ namespace Numeric {
///
/// @returns A number in the range 0.0 to 1.0 indicating the similarity between two strings;
/// 1.0 is most similar, 0.0 is least.
double similarity(std::string_view first, std::string_view second) {
inline double similarity(std::string_view first, std::string_view second) {
if(first.size() < 2 || second.size() < 2) {
return 0.0;
}