- Timestamp:
- Jan 30, 2023, 1:39:21 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 82b96953
- Parents:
- 418882af (diff), ad861ef (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
-
src/AST/Node.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.hpp
r418882af rcd5eb4b 19 19 #include <cstddef> // for nullptr_t 20 20 #include <iosfwd> 21 #include <type_traits> // for remove_reference22 21 23 22 #include "Common/ErrorObjects.h" // for SemanticErrorException … … 36 35 Node(const Node&) : strong_count(0), weak_count(0) {} 37 36 Node(Node&&) : strong_count(0), weak_count(0) {} 38 Node& operator= (const Node&) = delete;39 Node& operator= (Node&&) = delete;37 Node& operator=(const Node&) = delete; 38 Node& operator=(Node&&) = delete; 40 39 virtual ~Node() {} 41 40
Note:
See TracChangeset
for help on using the changeset viewer.