* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / src / vm / properties.hpp
index df2527fe6abca481190c456e8095bd3c3f7608d9..b10a5a7b3ad4a5631fc5d6a9988ef880d4436b8a 100644 (file)
@@ -53,6 +53,10 @@ class Properties {
 private:
        std::map<const char*, const char*, ltstr> _properties;
 
+private:
+       // Don't allow to copy the properties.
+       Properties(const Properties&);
+
 public:
        Properties();