Skip to content
Snippets Groups Projects
Commit 8f73147e authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon
Browse files

Fix reference assignment

Since m_ADIOS is a reference type then it can't be called with an explicit
constructor
parent 248bc6e7
No related branches found
No related tags found
1 merge request!14Fix dashboard errors
......@@ -20,7 +20,7 @@ Engine::Engine(ADIOS &adios, const std::string engineType,
MPI_Comm mpiComm, const Method &method, const bool debugMode,
const unsigned int nthreads, const std::string endMessage)
: m_MPIComm{mpiComm}, m_EngineType{engineType}, m_Name{name},
m_AccessMode{accessMode}, m_Method{method}, m_ADIOS{adios},
m_AccessMode{accessMode}, m_Method{method}, m_ADIOS(adios),
m_DebugMode{debugMode}, m_nThreads{nthreads}, m_EndMessage(endMessage)
{
if (m_DebugMode == true)
......
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