// check for reentrancy
VERIFY(st.state != lock_state::locked || st.held_by != self);
- VERIFY(find(st.wanted_by.begin(), st.wanted_by.end(), self) == st.wanted_by.end());
+ VERIFY(std::find(st.wanted_by.begin(), st.wanted_by.end(), self)
+ == st.wanted_by.end());
st.wanted_by.push_back(self);