Index: src/IceAPInt.h |
diff --git a/src/IceAPInt.h b/src/IceAPInt.h |
index 1789dd5751aa88d30d373579c19341884385ab44..f7f5f36b3989a156ad5ff7c03f5f40cd58c43cf1 100644 |
--- a/src/IceAPInt.h |
+++ b/src/IceAPInt.h |
@@ -23,6 +23,10 @@ |
namespace Ice { |
class APInt { |
+ APInt() = delete; |
+ APInt(const APInt &) = delete; |
+ APInt &operator=(const APInt &) = delete; |
+ |
public: |
/// Bits in an (internal) value. |
static const SizeT APINT_BITS_PER_WORD = sizeof(uint64_t) * CHAR_BIT; |