# HG changeset patch # User David Nadlinger # Date 1300394967 -3600 # Node ID b64ca517a6b7c992fd7346c0c8bb2540f4e3bb51 # Parent 8564ab82ea4274964f4dd5b9bf37777b230ea756 Removed stray ?auto? to make QVariant(false) compile. Bitbucket: Fixes #2. diff -r 8564ab82ea42 -r b64ca517a6b7 d2/qtd/QMetaTypeImpl.d --- a/d2/qtd/QMetaTypeImpl.d Thu Mar 17 19:46:11 2011 +0000 +++ b/d2/qtd/QMetaTypeImpl.d Thu Mar 17 21:49:27 2011 +0100 @@ -31,7 +31,7 @@ { static void* construct(void* copy) { - auto T* p = cast(T*)GC.malloc(T.sizeof); + T* p = cast(T*)GC.malloc(T.sizeof); if (!p) onOutOfMemoryError();