diff --git a/include/engine/adios1/ADIOS1Reader.h b/include/engine/adios1/ADIOS1Reader.h index ea628b75448d2916e408703e8bb4d7168fbb3c96..64566ec4edbdebda353e531560f2857ccbf7e45f 100644 --- a/include/engine/adios1/ADIOS1Reader.h +++ b/include/engine/adios1/ADIOS1Reader.h @@ -99,7 +99,7 @@ public: private: void Init(); ///< called from constructor, gets the selected ADIOS1 - ///transport method from settings + /// transport method from settings template <class T> Variable<T> *InquireVariableCommon(const std::string name, diff --git a/include/external/adios_selection.h b/include/external/adios_selection.h index 2e15d124e3ec19a78f475ec42d496bd27b5d61a3..551d72ee5f8ea6297f5367e12b3759abdb6fdb1a 100644 --- a/include/external/adios_selection.h +++ b/include/external/adios_selection.h @@ -51,7 +51,7 @@ enum ADIOS_SELECTION_TYPE { ADIOS_SELECTION_BOUNDINGBOX = 0, /* Contiguous block of data defined by offsets and counts in each dimension */ - ADIOS_SELECTION_POINTS = 1, /* List of individual points */ + ADIOS_SELECTION_POINTS = 1, /* List of individual points */ ADIOS_SELECTION_WRITEBLOCK = 2, /* Selection of an individual block written by a writer process */ ADIOS_SELECTION_AUTO = 3 /* Let the method decide what to return */ @@ -85,7 +85,7 @@ typedef struct uint64_t npoints; uint64_t *points; ADIOS_SELECTION - *container_selection; // a writeblock, a bounding box, or NULL + *container_selection; // a writeblock, a bounding box, or NULL } ADIOS_SELECTION_POINTS_STRUCT; /* A selected block produced by a writer diff --git a/source/engine/adios1/ADIOS1Reader.cpp b/source/engine/adios1/ADIOS1Reader.cpp index 817b1467cd20482bfc81aca0862f3b71c4600140..6f8fd564a959a147fe436a0f888651fe0ba8bac8 100644 --- a/source/engine/adios1/ADIOS1Reader.cpp +++ b/source/engine/adios1/ADIOS1Reader.cpp @@ -27,7 +27,6 @@ ADIOS1Reader::ADIOS1Reader(ADIOS &adios, const std::string name, { Init(); adios_read_init_method(read_method, m_MPIComm, ""); - } ADIOS1Reader::~ADIOS1Reader() { adios_read_finalize_method(read_method); } @@ -174,5 +173,4 @@ void ADIOS1Reader::Init() } } - } // end namespace