mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Rename llvm::Optional<T>::Reset to 'reset' as per LLVM naming conventions.
Code review feedback on r175580 from Jordan Rose. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
65692c809e
commit
4318fc5e1e
@ -62,13 +62,13 @@ public:
|
||||
|
||||
Optional &operator=(const Optional &O) {
|
||||
if (!O)
|
||||
Reset();
|
||||
reset();
|
||||
else
|
||||
*this = *O;
|
||||
return *this;
|
||||
}
|
||||
|
||||
void Reset() {
|
||||
void reset() {
|
||||
if (hasVal) {
|
||||
(*this)->~T();
|
||||
hasVal = false;
|
||||
@ -76,7 +76,7 @@ public:
|
||||
}
|
||||
|
||||
~Optional() {
|
||||
Reset();
|
||||
reset();
|
||||
}
|
||||
|
||||
const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
|
||||
|
@ -56,7 +56,7 @@ TEST_F(OptionalTest, ResetTest) {
|
||||
EXPECT_EQ(0u, NonDefaultConstructible::CopyAssignments);
|
||||
EXPECT_EQ(1u, NonDefaultConstructible::Destructions);
|
||||
NonDefaultConstructible::ResetCounts();
|
||||
O.Reset();
|
||||
O.reset();
|
||||
EXPECT_EQ(0u, NonDefaultConstructible::CopyConstructions);
|
||||
EXPECT_EQ(0u, NonDefaultConstructible::CopyAssignments);
|
||||
EXPECT_EQ(1u, NonDefaultConstructible::Destructions);
|
||||
|
Loading…
x
Reference in New Issue
Block a user