From f35a4507d326acbdcbcdf133937975063563c28e Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Thu, 6 Jun 2013 19:31:44 +0200 Subject: [PATCH] DValue: Do not uselessly inherit from Object. --- gen/dvalue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/dvalue.h b/gen/dvalue.h index 03856249..c5f83bf3 100644 --- a/gen/dvalue.h +++ b/gen/dvalue.h @@ -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) {}