Another fix for nested context in structs.

This commit is contained in:
Alexey Prokhin
2010-11-05 11:55:23 +03:00
parent 45606689c5
commit 59d1ec5e0b
3 changed files with 7 additions and 3 deletions

View File

@@ -28,6 +28,6 @@ LLValue* DtoResolveNestedContext(Loc loc, ClassDeclaration *decl, LLValue *value
llvm::Value* DtoNestedContext(Loc loc, Dsymbol* sym);
/// Gets the DValue of a nested variable with arbitrary nesting.
DValue* DtoNestedVariable(Loc loc, Type* astype, VarDeclaration* vd);
DValue* DtoNestedVariable(Loc loc, Type* astype, VarDeclaration* vd, bool byref = false);
#endif