Skip to content
Snippets Groups Projects
Commit 8c3f0e65 authored by Ianna Osborne's avatar Ianna Osborne Committed by Marko Petric
Browse files

fix compilation errors

parent 63783a38
No related branches found
No related tags found
No related merge requests found
......@@ -54,13 +54,13 @@ namespace dd4hep {
/* }); */
}
void print(const std::unique_ptr<Filter>& filter) const {
// void print(const std::unique_ptr<Filter>& filter) const {
/* edm::LogVerbatim("Geometry").log([&](auto& log) { */
/* for (const auto& it : filter->skeys) { */
/* log << it << ", "; */
/* } */
/* }); */
}
//}
std::vector<std::string_view> skeys;
std::vector<std::regex> keys;
......
......@@ -9,7 +9,7 @@ namespace cms {
namespace dd {
bool isMatch(string_view node, string_view name) {
if (!isRegex(name)) {
if (!dd4hep::dd::isRegex(name)) {
return (name == node);
} else {
regex pattern({name.data(), name.size()});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment