Changeset 2e9b59b for src/AST/Node.cpp
- Timestamp:
- Apr 19, 2022, 3:00:04 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 5b84a321
- Parents:
- ba897d21 (diff), bb7c77d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.cpp
rba897d21 r2e9b59b 9 9 // Author : Thierry Delisle 10 10 // Created On : Thu May 16 14:16:00 2019 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Feb 1 09:09:39202213 // Update Count : 311 // Last Modified By : Andrew Beach 12 // Last Modified On : Fri Mar 25 10:30:00 2022 13 // Update Count : 4 14 14 // 15 15 … … 19 19 #include <csignal> // MEMORY DEBUG -- for raise 20 20 #include <iostream> 21 #include <utility> 21 22 22 23 #include "Attribute.hpp" … … 76 77 void ast::ptr_base<node_t, ref_t>::_check() const { 77 78 // if(node) assert(node->was_ever_strong == false || node->strong_count > 0); 79 } 80 81 template< typename node_t, enum ast::Node::ref_type ref_t > 82 void ast::ptr_base<node_t, ref_t>::swap( ptr_base & other ) noexcept { 83 std::swap( this->node, other.node ); 84 _trap( this->node ); 85 _trap( other.node ); 78 86 } 79 87 … … 152 160 template class ast::ptr_base< ast::SwitchStmt, ast::Node::ref_type::weak >; 153 161 template class ast::ptr_base< ast::SwitchStmt, ast::Node::ref_type::strong >; 154 template class ast::ptr_base< ast::Case Stmt, ast::Node::ref_type::weak >;155 template class ast::ptr_base< ast::Case Stmt, ast::Node::ref_type::strong >;162 template class ast::ptr_base< ast::CaseClause, ast::Node::ref_type::weak >; 163 template class ast::ptr_base< ast::CaseClause, ast::Node::ref_type::strong >; 156 164 template class ast::ptr_base< ast::BranchStmt, ast::Node::ref_type::weak >; 157 165 template class ast::ptr_base< ast::BranchStmt, ast::Node::ref_type::strong >; … … 162 170 template class ast::ptr_base< ast::TryStmt, ast::Node::ref_type::weak >; 163 171 template class ast::ptr_base< ast::TryStmt, ast::Node::ref_type::strong >; 164 template class ast::ptr_base< ast::Catch Stmt, ast::Node::ref_type::weak >;165 template class ast::ptr_base< ast::Catch Stmt, ast::Node::ref_type::strong >;166 template class ast::ptr_base< ast::Finally Stmt, ast::Node::ref_type::weak >;167 template class ast::ptr_base< ast::Finally Stmt, ast::Node::ref_type::strong >;172 template class ast::ptr_base< ast::CatchClause, ast::Node::ref_type::weak >; 173 template class ast::ptr_base< ast::CatchClause, ast::Node::ref_type::strong >; 174 template class ast::ptr_base< ast::FinallyClause, ast::Node::ref_type::weak >; 175 template class ast::ptr_base< ast::FinallyClause, ast::Node::ref_type::strong >; 168 176 template class ast::ptr_base< ast::WaitForStmt, ast::Node::ref_type::weak >; 169 177 template class ast::ptr_base< ast::WaitForStmt, ast::Node::ref_type::strong >;
Note:
See TracChangeset
for help on using the changeset viewer.