Home
last modified time | relevance | path

Searched defs:IntProxy (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ADT/
H A DIteratorTest.cpp60 struct IntProxy { struct
61 int &I;
62 IntProxy(int &I) : I(I) {} in IntProxy() argument
63 void operator=(int NewValue) { I = NewValue; } in operator =()