From 7bb42e7ea97ff433c7c4d6322805f7943314612f Mon Sep 17 00:00:00 2001 From: Brian Bockelman <bbockelm@cse.unl.edu> Date: Tue, 17 Oct 2017 22:53:40 -0500 Subject: [PATCH] Fix indentation errors. [NFC] --- tree/tree/inc/ROOT/TIOFeatures.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tree/tree/inc/ROOT/TIOFeatures.hxx b/tree/tree/inc/ROOT/TIOFeatures.hxx index 797b5289d0f..00be3033267 100644 --- a/tree/tree/inc/ROOT/TIOFeatures.hxx +++ b/tree/tree/inc/ROOT/TIOFeatures.hxx @@ -30,7 +30,7 @@ namespace ROOT { // to BITS(kIOFeatureCount). // enum class EIOFeatures { - kSupported = 0 // Union of all known, supported, and enabled-by-default features (currently none). + kSupported = 0 // Union of all known, supported, and enabled-by-default features (currently none). }; @@ -43,8 +43,8 @@ namespace Experimental { // the "ROOT-IO-wide" level and not restricted to TBasket -- even if all the currently-foreseen // usage of this mechanism somehow involves baskets currently. enum class EIOFeatures { - kGenerateOffsetMap = BIT(0), - kSupported = kGenerateOffsetMap // Union of all features in this enum. + kGenerateOffsetMap = BIT(0), + kSupported = kGenerateOffsetMap // Union of all features in this enum. }; @@ -52,7 +52,7 @@ enum class EIOFeatures { // NOTE: the intent is that there is never an IO feature that goes into the ROOT:: namespace // but is unsupported. enum class EIOUnsupportedFeatures { - kUnsupported = 0 // Union of all features in this enum. + kUnsupported = 0 // Union of all features in this enum. }; -- GitLab