| 37 | #include "Constant.h" |
| 38 | |
| 39 | ExtensionValue::ExtensionValue(const Type *type, string name) |
| 40 | : type_(type), |
| 41 | value_(NULL), |
| 42 | name_(name) |
| 43 | { |
| 44 | vector<bool> isConsts; |
| 45 | vector<bool> isVolatiles; |
| 46 | isConsts.push_back(false); |
| 47 | isVolatiles.push_back(false); |
| 48 | qfer_ = CVQualifiers(isConsts, isVolatiles); |
| 49 | } |
| 50 | |
| 51 | ExtensionValue::~ExtensionValue() |
| 52 | { |
nothing calls this directly
no test coverage detected