Searched defs:NoThrowT (Results 1 – 2 of 2) sorted by relevance
52 struct NoThrowT { struct53 NoThrowT(int) noexcept {} in NoThrowT() function54 NoThrowT &operator=(int) noexcept { return *this; } in operator =()101 struct NoThrowT { struct102 int value;103 NoThrowT() : value(0) {} in NoThrowT() function104 NoThrowT(int v) noexcept : value(v) {} in NoThrowT() function105 NoThrowT &operator=(int v) noexcept { in operator =()
44 struct NoThrowT { struct45 NoThrowT(int) noexcept(true) {} in NoThrowT() argument