File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ class ReflectionContext
94
94
explicit ReflectionContext (std::shared_ptr<MemoryReader> reader)
95
95
: super(std::move(reader)) {}
96
96
97
- ReflectionContext (const ReflectionContext&) = delete ;
97
+ ReflectionContext (const ReflectionContext &other) = delete ;
98
+ ReflectionContext &operator =(const ReflectionContext &other) = delete ;
98
99
99
100
MemoryReader &getReader () {
100
101
return *this ->Reader ;
Original file line number Diff line number Diff line change @@ -69,6 +69,11 @@ class TypeRefBuilder {
69
69
public:
70
70
using Type = const TypeRef *;
71
71
72
+ TypeRefBuilder () {}
73
+
74
+ TypeRefBuilder (const TypeRefBuilder &other) = delete ;
75
+ TypeRefBuilder &operator =(const TypeRefBuilder &other) = delete ;
76
+
72
77
private:
73
78
std::vector<std::unique_ptr<const TypeRef>> TypeRefPool;
74
79
You can’t perform that action at this time.
0 commit comments