Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:same

334 constexpr bool same(const int &a, const int &b) { return &a == &b; }
335 constexpr bool sameTemporary(const int &n) { return same(n, n); }
338 static_assert(!same(4, 4), "");
339 static_assert(same(n, n), "");