diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-23 12:19:13 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-23 12:19:13 -0700 |
commit | e39cc69fa3cb830b803fe0c4f6c30915aa886b5b (patch) | |
tree | 8c45e792ee3afbcd088e287932f3dc7a86366c19 /ir.h | |
parent | 7563b50075975a3a6b32de64ecb240398d421a55 (diff) |
Set, and require, a return type for function signatures
Diffstat (limited to 'ir.h')
-rw-r--r-- | ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ public: /*@{*/ class ir_function_signature : public ir_instruction { public: - ir_function_signature(void); + ir_function_signature(const glsl_type *return_type); virtual void accept(ir_visitor *v) { |