-
Notifications
You must be signed in to change notification settings - Fork 75
v0.2.54..v0.2.55 changeset NameExtractor.cpp
Garret Voltz edited this page Aug 14, 2020
·
1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/NameExtractor.cpp b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/NameExtractor.cpp
index 42829c5..3ccc0e1 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/NameExtractor.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/extractors/NameExtractor.cpp
@@ -38,14 +38,14 @@ namespace hoot
HOOT_FACTORY_REGISTER(FeatureExtractor, NameExtractor)
-NameExtractor::NameExtractor():
+NameExtractor::NameExtractor() :
_d(new LevenshteinDistance()),
_namesProcessed(0),
_matchAttemptMade(false)
{
}
-NameExtractor::NameExtractor(StringDistancePtr d):
+NameExtractor::NameExtractor(StringDistancePtr d) :
_d(d),
_namesProcessed(0),
_matchAttemptMade(false)