more gcc warnings

This commit is contained in:
David Rose 2007-03-16 17:25:02 +00:00
parent 2d634cd9d0
commit b10815afab
3 changed files with 4 additions and 4 deletions

View File

@ -101,4 +101,4 @@ operator == (const ShaderCaps &other) const {
}
#endif
return true;
}
}

View File

@ -1137,9 +1137,9 @@ ShaderExpansion(const string &name, const string &text,
const ShaderCaps &caps) :
_name(name),
_text(text),
_parse(0),
_header(""),
_error_flag(true)
_error_flag(true),
_parse(0)
{
string header;
parse_init();

View File

@ -181,7 +181,7 @@ public:
int _active_fprofile;
int _ultimate_vprofile;
int _ultimate_fprofile;
#endif;
#endif
INLINE void clear();
INLINE bool operator == (const ShaderCaps &other) const;
INLINE ShaderCaps();