Skip to content

Commit 678d884

Browse files
committed
try again
1 parent 352678a commit 678d884

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Common/Cpp/Containers/FixedLimitVector.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ FixedLimitVector<Object>::FixedLimitVector()
109109
, m_capacity(0)
110110
{}
111111

112+
template <typename Object>
113+
void FixedLimitVector<Object>::pop_back(){
114+
m_data[--m_size].~Object();
115+
}
112116

113117

114118

Common/Cpp/Containers/FixedLimitVector.tpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ bool FixedLimitVector<Object>::emplace_back(Args&&... args){
8787
return false;
8888
}
8989
}
90-
template <typename Object>
91-
void FixedLimitVector<Object>::pop_back(){
92-
m_data[--m_size].~Object();
93-
}
9490

9591

9692

0 commit comments

Comments
 (0)