@@ -127,50 +127,52 @@ namespace DyldSharedCache {
127127 constexpr auto setAuthData (const bool Value = true ) noexcept
128128 -> decltype(*this )
129129 {
130- this ->setValueForMask (Masks::AuthData, 0 , Value);
130+ this ->setValueForMask (Masks::AuthData, /* Shift= */ 0 , Value);
131131 return *this ;
132132 }
133133
134134 constexpr auto setDirtyData (const bool Value = true ) noexcept
135135 -> decltype(*this )
136136 {
137- this ->setValueForMask (Masks::DirtyData, 0 , Value);
137+ this ->setValueForMask (Masks::DirtyData, /* Shift= */ 0 , Value);
138138 return *this ;
139139 }
140140
141141 constexpr auto setConstData (const bool Value = true ) noexcept
142142 -> decltype(*this )
143143 {
144- this ->setValueForMask (Masks::ConstData, 0 , Value);
144+ this ->setValueForMask (Masks::ConstData, /* Shift= */ 0 , Value);
145145 return *this ;
146146 }
147147
148148 constexpr auto setTextStubs (const bool Value = true ) noexcept
149149 -> decltype(*this )
150150 {
151- this ->setValueForMask (Masks::TextStubs, 0 , Value);
151+ this ->setValueForMask (Masks::TextStubs, /* Shift= */ 0 , Value);
152152 return *this ;
153153 }
154154
155155 constexpr
156156 auto setDynamicConfigData (const bool Value = true ) noexcept
157157 -> decltype(*this )
158158 {
159- this ->setValueForMask (Masks::DynamicConfigData, 0 , Value);
159+ this ->setValueForMask (Masks::DynamicConfigData,
160+ /* Shift=*/ 0 ,
161+ Value);
160162 return *this ;
161163 }
162164
163165 constexpr auto setReadOnlyData (const bool Value = true ) noexcept
164166 -> decltype(*this )
165167 {
166- this ->setValueForMask (Masks::ReadOnlyData, 0 , Value);
168+ this ->setValueForMask (Masks::ReadOnlyData, /* Shift= */ 0 , Value);
167169 return *this ;
168170 }
169171
170172 constexpr auto setConstTproData (const bool Value = true ) noexcept
171173 -> decltype(*this )
172174 {
173- this ->setValueForMask (Masks::ConstTproData, 0 , Value);
175+ this ->setValueForMask (Masks::ConstTproData, /* Shift= */ 0 , Value);
174176 return *this ;
175177 }
176178 };
@@ -396,23 +398,23 @@ namespace DyldSharedCache {
396398 constexpr auto setIsProduction (const bool Value = true ) noexcept
397399 -> decltype(*this )
398400 {
399- setValueForMask (Kind::IsProduction, 0 , Value);
401+ setValueForMask (Kind::IsProduction, /* Shift= */ 0 , Value);
400402 return *this ;
401403 }
402404
403405 constexpr auto
404406 setNoMissingWeakSuperclasses (const bool Value = true ) noexcept
405407 -> decltype (*this )
406408 {
407- setValueForMask (Kind::IsProduction, 0 , Value);
409+ setValueForMask (Kind::IsProduction, /* Shift= */ 0 , Value);
408410 return *this ;
409411 }
410412
411413 constexpr
412414 auto setLargeSharedCache (const bool Value = true ) noexcept
413415 -> decltype(*this )
414416 {
415- setValueForMask (Kind::LargeSharedCache, 0 , Value);
417+ setValueForMask (Kind::LargeSharedCache, /* Shift= */ 0 , Value);
416418 return *this ;
417419 }
418420 };
0 commit comments