Searched defs:IntProxy (Results 1 – 1 of 1) sorted by relevance
60 struct IntProxy { struct61 int &I;62 IntProxy(int &I) : I(I) {} in IntProxy() argument63 void operator=(int NewValue) { I = NewValue; } in operator =()