From 7dff0bbe4b4259369b6c167f0d29592fce179e2f Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Thu, 10 Oct 2013 18:26:28 +0200 Subject: [PATCH] Fix IrType::isVector (so far unused anyway). --- ir/irtype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/irtype.h b/ir/irtype.h index 9fdd203f..6b388468 100644 --- a/ir/irtype.h +++ b/ir/irtype.h @@ -81,7 +81,7 @@ public: /// virtual IrTypeStruct* isStruct() { return 0; } /// - IrTypeVector* isVector() { return 0; } + virtual IrTypeVector* isVector() { return 0; } /// Type* getDType() { return dtype; }