DValue: Do not uselessly inherit from Object.

This commit is contained in:
David Nadlinger
2013-06-07 03:20:39 +02:00
parent b2f2afad29
commit f35a4507d3
+1 -1
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) {}