We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5ff144 commit 46e90e5Copy full SHA for 46e90e5
clang/include/clang/Basic/Sanitizers.h
@@ -155,11 +155,11 @@ struct SanitizerKind {
155
}; // SanitizerKind
156
157
struct SanitizerMaskCutoffs {
158
- std::array<float, SanitizerKind::SO_Count> data = {0};
+ std::array<float, SanitizerKind::SO_Count> cutoffs = {0};
159
160
- float &operator[](int index) { return data[index]; }
+ float &operator[](int index) { return cutoffs[index]; }
161
162
- const float &operator[](int index) const { return data[index]; }
+ const float &operator[](int index) const { return cutoffs[index]; }
163
}; // SanitizerMaskCutoffs;
164
165
struct SanitizerSet {
0 commit comments