Skip to content
Snippets Groups Projects

Set debugMode to true by default.

Merged Podhorszki, Norbert requested to merge github/fork/pnorbert/debugmode-default-true into master
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
@@ -45,7 +45,7 @@ public:
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const std::string configFile, MPI_Comm mpiComm,
const bool debugMode = false);
const bool debugMode = true);
/**
* @brief Constructor for non-MPI applications WITH a XML config file
@@ -53,20 +53,20 @@ public:
* future?)
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const std::string configFile, const bool debugMode = false);
ADIOS(const std::string configFile, const bool debugMode = true);
/**
* @brief Constructor for MPI apps WITHOUT a XML config file
* @param mpiComm MPI communicator from application
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(MPI_Comm mpiComm, const bool debugMode = false);
ADIOS(MPI_Comm mpiComm, const bool debugMode = true);
/**
* @brief ADIOS no-MPI default empty constructor
* @param debugMode true: extra exception checks (recommended)
*/
ADIOS(const bool debugMode = false);
ADIOS(const bool debugMode = true);
/**
* Delete copy constructor explicitly. Objects shouldn't be allowed to be
@@ -103,7 +103,7 @@ private:
const std::string m_ConfigFile;
/** if true will do more checks, exceptions, warnings, expect slower code */
const bool m_DebugMode = false;
const bool m_DebugMode = true;
/** transforms associated with ADIOS run */
std::map<std::string, std::shared_ptr<Transform>> m_Transforms;
Loading