Correct for warnings and errors for the VC++ port.

This commit is contained in:
Jason Turner
2009-07-19 03:59:58 +00:00
parent a5a1e3ee1b
commit daacbaa9e0
3 changed files with 6 additions and 6 deletions

View File

@@ -399,13 +399,13 @@ namespace chaiscript
virtual std::vector<Type_Info> get_param_types() const
{
Func *f;
Func *f = 0;
return build_param_type_list(f);
}
virtual bool types_match(const std::vector<Boxed_Value> &types) const
{
Func *f;
Func *f = 0;
return compare_types(f, types);
}