From a8f1a160864d269c1322bc439ed83ac05e641955 Mon Sep 17 00:00:00 2001
From: Norbert Podhorszki <pnorbert@ornl.gov>
Date: Fri, 7 Apr 2017 14:16:07 -0400
Subject: [PATCH] clang-format

---
 include/engine/adios1/ADIOS1Reader.h  | 2 +-
 include/external/adios_selection.h    | 4 ++--
 source/engine/adios1/ADIOS1Reader.cpp | 2 --
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/include/engine/adios1/ADIOS1Reader.h b/include/engine/adios1/ADIOS1Reader.h
index ea628b754..64566ec4e 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 2e15d124e..551d72ee5 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 817b1467c..6f8fd564a 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
-- 
GitLab