Skip to content
Snippets Groups Projects
Commit a8d3d549 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'clang.TrkExAlgs-20200521' into 'master'

TrkExAlgs: Fix compilation with clang.

See merge request atlas/athena!33084
parents c5d1d14b 6cff67da
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ class PropResultRootWriterSvc : public AthService { ...@@ -33,7 +33,7 @@ class PropResultRootWriterSvc : public AthService {
return IID_PropResultRootWriterSvc; return IID_PropResultRootWriterSvc;
} }
virtual StatusCode queryInterface(const InterfaceID& riid, void** ppvInterface) { virtual StatusCode queryInterface(const InterfaceID& riid, void** ppvInterface) override {
ATH_MSG_DEBUG("in queryInterface()"); ATH_MSG_DEBUG("in queryInterface()");
if (PropResultRootWriterSvc::interfaceID().versionMatch(riid)) { if (PropResultRootWriterSvc::interfaceID().versionMatch(riid)) {
ATH_MSG_DEBUG("matched PropResultRootWriterSvc"); ATH_MSG_DEBUG("matched PropResultRootWriterSvc");
......
...@@ -29,7 +29,7 @@ StatusCode Trk::PropResultRootWriterSvc::initialize() ...@@ -29,7 +29,7 @@ StatusCode Trk::PropResultRootWriterSvc::initialize()
const std::string treeName = m_treeName; const std::string treeName = m_treeName;
m_tree = new TTree(treeName.data(), "MyStudies"); m_tree = new TTree(treeName.data(), "MyStudies");
std::string fullNtupleName = m_ntupleDirName + m_treeName; std::string fullNtupleName = static_cast<std::string>(m_ntupleDirName) + m_treeName;
CHECK(m_thistSvc->regTree(fullNtupleName, m_tree)); CHECK(m_thistSvc->regTree(fullNtupleName, m_tree));
if(m_tree == nullptr) { if(m_tree == nullptr) {
......
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