Home
last modified time | relevance | path

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

/aosp_15_r20/external/fmtlib/test/
H A Dbase-test.cc802 struct throwing_iterator { in TEST() struct
803 int& count; in TEST()
805 auto operator=(char) -> throwing_iterator& { in TEST()
809 auto operator*() -> throwing_iterator& { return *this; } in TEST()
810 auto operator++() -> throwing_iterator& { return *this; } in TEST()
811 auto operator++(int) -> throwing_iterator { return *this; } in TEST()