aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps/tests
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2022-03-29 12:53:37 +0000
committerArne H Juul <arnej@yahooinc.com>2022-03-29 12:53:37 +0000
commitc533430fd00b801968d58071d022de9f90a02515 (patch)
treea9e88e57475c30346f34a9aff0c91af12e3fba00 /searchcore/src/apps/tests
parent9bced6805fe2d89f9ba316399474a831c85985ff (diff)
use std::function
* no need to implement our own (restricted) version of it
Diffstat (limited to 'searchcore/src/apps/tests')
-rw-r--r--searchcore/src/apps/tests/persistenceconformance_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/apps/tests/persistenceconformance_test.cpp b/searchcore/src/apps/tests/persistenceconformance_test.cpp
index 7c0a9b29a7b..6b23f596835 100644
--- a/searchcore/src/apps/tests/persistenceconformance_test.cpp
+++ b/searchcore/src/apps/tests/persistenceconformance_test.cpp
@@ -113,9 +113,9 @@ public:
DocumenttypesConfigSP getTypeCfg() const { return _typeCfg; }
DocTypeVector getDocTypes() const {
DocTypeVector types;
- _repo->forEachDocumentType(*DocumentTypeRepo::makeLambda([&types](const DocumentType &type) {
+ _repo->forEachDocumentType([&types](const DocumentType &type) {
types.push_back(DocTypeName(type.getName()));
- }));
+ });
return types;
}
DocumentDBConfig::SP create(const DocTypeName &docTypeName) const {