Changeset 860f19f for doc/papers/general/evaluation/cpp-vstack.cpp
- Timestamp:
- Mar 9, 2018, 2:28:09 PM (4 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, resolv-new, with_gc
- Children:
- 200b2b5, e2c70ab
- Parents:
- e84382b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/general/evaluation/cpp-vstack.cpp
re84382b r860f19f 24 24 stack::stack() : head( nullptr ) {} 25 25 stack::stack( const stack & o ) { copy( o ); } 26 stack::stack( stack && o ) : head( o.head ) { o.head = nullptr; }27 26 stack::~stack() { clear(); } 28 27 … … 31 30 clear(); 32 31 copy( o ); 33 return *this;34 }35 36 stack & stack::operator=( stack && o ) {37 if ( this == &o ) return *this;38 head = o.head;39 o.head = nullptr;40 32 return *this; 41 33 }
Note: See TracChangeset
for help on using the changeset viewer.