Searched refs:TypedInt (Results 1 – 2 of 2) sorted by relevance
203 template <typename T> struct TypedInt {205 LIBC_INLINE constexpr explicit TypedInt(T value) : value(value) {}206 LIBC_INLINE constexpr TypedInt(const TypedInt &value) = default;207 LIBC_INLINE constexpr TypedInt &operator=(const TypedInt &value) = default;215 LIBC_INLINE friend constexpr bool operator==(TypedInt a, TypedInt b) {218 LIBC_INLINE friend constexpr bool operator!=(TypedInt a, TypedInt [all...]
65 int TypedInt = getInt(); in foo() local