diff options
Diffstat (limited to 'include/Support/Annotation.h')
-rw-r--r-- | include/Support/Annotation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Support/Annotation.h b/include/Support/Annotation.h index c0642e1d23..90259536b8 100644 --- a/include/Support/Annotation.h +++ b/include/Support/Annotation.h @@ -81,6 +81,9 @@ public: // class Annotable { mutable Annotation *AnnotationList; + + Annotable(const Annotable &); // Do not implement + void operator=(const Annotable &); // Do not implement public: Annotable() : AnnotationList(0) {} virtual ~Annotable() { // Virtual because it's designed to be subclassed... |