Fix namespaced builds on ARM

Use uint64_t instead of quint64 as this code is not namespaced
and to align it with the x86 code path.

Pick-to: 6.2 6.3
Change-Id: I887ef9314a80cfcc17701eac1ec9a086f3cd5bf7
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Lars Knoll 2022-05-09 09:51:37 +02:00
parent 01b50bfcda
commit b51712f136
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ enum CPUFeatures {
#endif
};
static const quint64 qCompilerCpuFeatures = 0
static const uint64_t qCompilerCpuFeatures = 0
#if defined __ARM_NEON__
| CpuFeatureNEON
#endif