We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffd4add + c2310a7 commit f1a6b04Copy full SHA for f1a6b04
RecoTracker/LSTCore/standalone/bin/lst.cc
@@ -3,6 +3,8 @@
3
4
#include <typeinfo>
5
6
+#include <boost/core/demangle.hpp>
7
+
8
using LSTEvent = ALPAKA_ACCELERATOR_NAMESPACE::lst::LSTEvent;
9
using LSTInputDeviceCollection = ALPAKA_ACCELERATOR_NAMESPACE::lst::LSTInputDeviceCollection;
10
using namespace ::lst;
@@ -569,3 +571,9 @@ void run_lst() {
569
571
570
572
delete ana.output_tfile;
573
}
574
575
+// Dummy implementation of edm::typeDemangle (without extra replacements)
576
+// to avoid having to link extra libraries
577
+namespace edm {
578
+ std::string typeDemangle(char const *mangledName) { return boost::core::demangle(mangledName); }
579
+} // namespace edm
0 commit comments