@@ -149,17 +149,17 @@ SmallPtrSetImplBase::SmallPtrSetImplBase(const void **SmallStorage,
149149 }
150150
151151 // Copy over the that array.
152- CopyHelper (that);
152+ copyHelper (that);
153153}
154154
155155SmallPtrSetImplBase::SmallPtrSetImplBase (const void **SmallStorage,
156156 unsigned SmallSize,
157157 const void **RHSSmallStorage,
158158 SmallPtrSetImplBase &&that) {
159- MoveHelper (SmallStorage, SmallSize, RHSSmallStorage, std::move (that));
159+ moveHelper (SmallStorage, SmallSize, RHSSmallStorage, std::move (that));
160160}
161161
162- void SmallPtrSetImplBase::CopyFrom (const void **SmallStorage,
162+ void SmallPtrSetImplBase::copyFrom (const void **SmallStorage,
163163 const SmallPtrSetImplBase &RHS) {
164164 assert (&RHS != this && " Self-copy should be handled by the caller." );
165165
@@ -185,10 +185,10 @@ void SmallPtrSetImplBase::CopyFrom(const void **SmallStorage,
185185 IsSmall = false ;
186186 }
187187
188- CopyHelper (RHS);
188+ copyHelper (RHS);
189189}
190190
191- void SmallPtrSetImplBase::CopyHelper (const SmallPtrSetImplBase &RHS) {
191+ void SmallPtrSetImplBase::copyHelper (const SmallPtrSetImplBase &RHS) {
192192 // Copy over the new array size
193193 CurArraySize = RHS.CurArraySize ;
194194
@@ -199,16 +199,16 @@ void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) {
199199 NumTombstones = RHS.NumTombstones ;
200200}
201201
202- void SmallPtrSetImplBase::MoveFrom (const void **SmallStorage,
202+ void SmallPtrSetImplBase::moveFrom (const void **SmallStorage,
203203 unsigned SmallSize,
204204 const void **RHSSmallStorage,
205205 SmallPtrSetImplBase &&RHS) {
206206 if (!isSmall ())
207207 free (CurArray);
208- MoveHelper (SmallStorage, SmallSize, RHSSmallStorage, std::move (RHS));
208+ moveHelper (SmallStorage, SmallSize, RHSSmallStorage, std::move (RHS));
209209}
210210
211- void SmallPtrSetImplBase::MoveHelper (const void **SmallStorage,
211+ void SmallPtrSetImplBase::moveHelper (const void **SmallStorage,
212212 unsigned SmallSize,
213213 const void **RHSSmallStorage,
214214 SmallPtrSetImplBase &&RHS) {
0 commit comments