Fix a typo in MSVC build.

This commit is contained in:
Kai Nacke
2013-12-19 21:45:29 +01:00
parent 467651fc49
commit 192f3eb13d

View File

@@ -131,7 +131,7 @@ struct IrFuncTy
// Copy constructor and operator= seems to be required for MSC
IrFuncTy(const IrFuncTy& rhs)
: funcType(ths.funcType),
: funcType(rhs.funcType),
ret(rhs.ret),
args(IrFuncTy::ArgList(rhs.args)),
arg_sret(rhs.arg_sret),