DValue: Do not uselessly inherit from Object.

This commit is contained in:
David Nadlinger
2013-06-06 19:31:44 +02:00
parent b2f2afad29
commit f35a4507d3

View File

@@ -41,7 +41,7 @@ struct DFuncValue;
struct DSliceValue;
// base class for d-values
struct DValue : Object
struct DValue
{
Type* type;
DValue(Type* ty) : type(ty) {}