Searched defs:IntProxy (Results 1 – 1 of 1) sorted by relevance
63 struct IntProxy { struct64 int &I;65 IntProxy(int &I) : I(I) {} in IntProxy() argument66 void operator=(int NewValue) { I = NewValue; } in operator =()