Skip to content

Commit

Permalink
[FIX] Fix compilation error on Linux due to cpu_x86_Linux.ipp
Browse files Browse the repository at this point in the history
  • Loading branch information
rlagneau committed Jun 4, 2024
1 parent 8448332 commit 567441d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/src/tools/cpu-features/x86/cpu_x86_Linux.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace FeatureDetector{
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
void cpu_x86::cpuid(int32_t out[4], int32_t x){
void cpu_x86::cpuid(uint32_t out[4], uint32_t x){
__cpuid_count(x, 0, out[0], out[1], out[2], out[3]);
}
uint64_t xgetbv(unsigned int index){
Expand Down

0 comments on commit 567441d

Please sign in to comment.