Skip to content

Commit d2ce2e2

Browse files
committed
[core] rename RAlignmentUtils to BitUtils
1 parent df1474a commit d2ce2e2

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

core/foundation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set_property(TARGET Core APPEND PROPERTY DICT_HEADERS
1414
TClassEdit.h
1515
TError.h
1616
ThreadLocalStorage.h
17-
ROOT/RAlignmentUtils.hxx
17+
ROOT/BitUtils.hxx
1818
ROOT/RError.hxx
1919
ROOT/RLogger.hxx
2020
ROOT/RNotFn.hxx

core/foundation/inc/ROOT/RAlignmentUtils.hxx renamed to core/foundation/inc/ROOT/BitUtils.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* For the list of contributors see $ROOTSYS/README/CREDITS. *
1010
*************************************************************************/
1111

12-
#ifndef ROOT_RAlignmentUtils
13-
#define ROOT_RAlignmentUtils
12+
#ifndef ROOT_BitUtils
13+
#define ROOT_BitUtils
1414

1515
#include <cassert>
1616
#include <cstddef>
@@ -38,4 +38,4 @@ inline constexpr T AlignUp(T value, T align) noexcept
3838
} // namespace Internal
3939
} // namespace ROOT
4040

41-
#endif // ROOT_RAlignmentUtils
41+
#endif // ROOT_BitUtils

core/meta/src/TClass.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ In order to access the name of a class within the ROOT type system, the method T
124124
#include "TClonesArray.h"
125125
#include "TRef.h"
126126
#include "TRefArray.h"
127-
#include "ROOT/RAlignmentUtils.hxx"
127+
#include "ROOT/BitUtils.hxx"
128128

129129
using std::multimap, std::make_pair, std::string;
130130

core/meta/src/TStreamerElement.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "TBaseClass.h"
2121
#include "TDataMember.h"
2222
#include "TDataType.h"
23-
#include "ROOT/RAlignmentUtils.hxx"
23+
#include "ROOT/BitUtils.hxx"
2424
#include "TEnum.h"
2525
#include "TRealData.h"
2626
#include "ThreadLocalStorage.h"

core/metacling/src/TClingClassInfo.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ but the class metadata comes from the Clang C++ compiler, not CINT.
5151
#include "llvm/Support/Casting.h"
5252
#include "llvm/Support/raw_ostream.h"
5353

54-
#include "ROOT/RAlignmentUtils.hxx"
54+
#include "ROOT/BitUtils.hxx"
5555

5656
#include <sstream>
5757
#include <string>

io/io/inc/TEmulatedCollectionProxy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define ROOT_TEmulatedCollectionProxy
1313

1414
#include "TGenCollectionProxy.h"
15-
#include "ROOT/RAlignmentUtils.hxx"
15+
#include "ROOT/BitUtils.hxx"
1616

1717
#include <type_traits>
1818
#include <vector>

io/io/inc/TGenCollectionProxy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include "TCollectionProxyInfo.h"
1919

20-
#include "ROOT/RAlignmentUtils.hxx"
20+
#include "ROOT/BitUtils.hxx"
2121

2222
#include <atomic>
2323
#include <string>

io/io/src/TStreamerInfo.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ element type.
7474
#include "TVirtualMutex.h"
7575

7676
#include "TStreamerInfoActions.h"
77-
#include "ROOT/RAlignmentUtils.hxx"
77+
#include "ROOT/BitUtils.hxx"
7878

7979
#include <memory>
8080
#include <algorithm>

0 commit comments

Comments
 (0)