@@ -86,8 +86,8 @@ inline const u8 *GetShadowTypeAddrFor(const u8 *Ptr) {
8686template <typename FT> struct FTInfo {};
8787template <> struct FTInfo <float > {
8888 using orig_type = float ;
89- using orig_bits_type = __sanitizer:: u32 ;
90- using mantissa_bits_type = __sanitizer:: u32 ;
89+ using orig_bits_type = u32 ;
90+ using mantissa_bits_type = u32 ;
9191 using shadow_type = double ;
9292 static const char *kCppTypeName ;
9393 static constexpr unsigned kMantissaBits = 23 ;
@@ -104,8 +104,8 @@ template <> struct FTInfo<float> {
104104};
105105template <> struct FTInfo <double > {
106106 using orig_type = double ;
107- using orig_bits_type = __sanitizer:: u64 ;
108- using mantissa_bits_type = __sanitizer:: u64 ;
107+ using orig_bits_type = u64 ;
108+ using mantissa_bits_type = u64 ;
109109 using shadow_type = __float128;
110110 static const char *kCppTypeName ;
111111 static constexpr unsigned kMantissaBits = 52 ;
@@ -126,7 +126,7 @@ template <> struct FTInfo<double> {
126126};
127127template <> struct FTInfo <long double > {
128128 using orig_type = long double ;
129- using mantissa_bits_type = __sanitizer:: u64 ;
129+ using mantissa_bits_type = u64 ;
130130 using shadow_type = __float128;
131131 static const char *kCppTypeName ;
132132 static constexpr unsigned kMantissaBits = 63 ;
0 commit comments