Lines Matching defs:noexcept
49 int f1(int x) noexcept { return x+1; }
50 int f2(int x) noexcept(true) { return x+2; }
51 int f3(int x) noexcept(false) { return x+3; }
56 int f4(int x) throw() { return x+4; } // Deprecated equivalent to noexcept(true)
61 int m1(int x) noexcept { return x-1; }
62 int m2(int x) const noexcept { return x-2; }
63 int m3(int x) noexcept(true) { return x-3; }
64 int m4(int x) const noexcept(true) { return x-4; }
65 int m5(int x) noexcept(false) { return x-5; }
66 int m6(int x) const noexcept(false) { return x-6; }