Skip to content

Commit 46e90e5

Browse files
committed
Rename 'data' to 'cutoffs'
1 parent a5ff144 commit 46e90e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/include/clang/Basic/Sanitizers.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ struct SanitizerKind {
155155
}; // SanitizerKind
156156

157157
struct SanitizerMaskCutoffs {
158-
std::array<float, SanitizerKind::SO_Count> data = {0};
158+
std::array<float, SanitizerKind::SO_Count> cutoffs = {0};
159159

160-
float &operator[](int index) { return data[index]; }
160+
float &operator[](int index) { return cutoffs[index]; }
161161

162-
const float &operator[](int index) const { return data[index]; }
162+
const float &operator[](int index) const { return cutoffs[index]; }
163163
}; // SanitizerMaskCutoffs;
164164

165165
struct SanitizerSet {

0 commit comments

Comments
 (0)