From: Christoph Bumiller Date: Sat, 19 Jan 2013 21:08:01 +0000 (+0100) Subject: nv50/ir: add definitions of Target and CodeEmitter dtors X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e264b8ef4138fb874bcf3f82cfd7468ee27768da;p=mesa.git nv50/ir: add definitions of Target and CodeEmitter dtors I really did build test, my compiler just doesn't seem to care. --- diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_target.h b/src/gallium/drivers/nv50/codegen/nv50_ir_target.h index 757f4f9437f..304dda4f865 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir_target.h +++ b/src/gallium/drivers/nv50/codegen/nv50_ir_target.h @@ -62,7 +62,7 @@ class CodeEmitter { public: CodeEmitter(const Target *); - virtual ~CodeEmitter(); + virtual ~CodeEmitter() { } // returns whether the instruction was encodable and written virtual bool emitInstruction(Instruction *) = 0; @@ -118,7 +118,7 @@ class Target { public: Target(bool j, bool s) : joinAnterior(j), hasSWSched(s) { } - virtual ~Target(); + virtual ~Target() { } static Target *create(uint32_t chipset); static void destroy(Target *);