Changes in src/AST/Node.hpp [a0d1f1c:3f681b1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.hpp
ra0d1f1c r3f681b1 19 19 #include <cstddef> // for nullptr_t 20 20 #include <iosfwd> 21 #include <type_traits> // for remove_reference 21 22 22 23 #include "Common/ErrorObjects.h" // for SemanticErrorException … … 35 36 Node(const Node&) : strong_count(0), weak_count(0) {} 36 37 Node(Node&&) : strong_count(0), weak_count(0) {} 37 Node& operator= (const Node&) = delete;38 Node& operator= (Node&&) = delete;38 Node& operator= (const Node&) = delete; 39 Node& operator= (Node&&) = delete; 39 40 virtual ~Node() {} 40 41
Note:
See TracChangeset
for help on using the changeset viewer.