build+tests: Fixing c++11 mode compilation and correcting integrated test with faces
Change-Id: I32e34d6b2ee8cfd85ec83f62323dd7a51f2238d6
diff --git a/src/security/conf/checker.hpp b/src/security/conf/checker.hpp
index cb56d85..05eb8c1 100644
--- a/src/security/conf/checker.hpp
+++ b/src/security/conf/checker.hpp
@@ -380,8 +380,7 @@
if (propertyIt != configSection.end())
throw Error("Expect the end of checker!");
- return make_shared<CustomizedChecker>(boost::cref(getSigType(sigType)),
- boost::cref(keyLocatorChecker));
+ return make_shared<CustomizedChecker>(getSigType(sigType), cref(keyLocatorChecker));
}
static shared_ptr<Checker>
@@ -401,7 +400,7 @@
if (propertyIt != configSection.end())
throw Error("Expect the end of checker!");
- return make_shared<HierarchicalChecker>(boost::cref(getSigType(sigType)));
+ return make_shared<HierarchicalChecker>(getSigType(sigType));
}
static shared_ptr<Checker>