aboutsummaryrefslogtreecommitdiff
path: root/src/core/CPP/CPPTypes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CPP/CPPTypes.cpp')
-rw-r--r--src/core/CPP/CPPTypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CPP/CPPTypes.cpp b/src/core/CPP/CPPTypes.cpp
index bd5236fcf8..6a3f66fd5a 100644
--- a/src/core/CPP/CPPTypes.cpp
+++ b/src/core/CPP/CPPTypes.cpp
@@ -103,12 +103,12 @@ bool CPUInfo::has_sve2() const
bool CPUInfo::has_sme() const
{
- return false;
+ return _impl->info.has_sme();
}
bool CPUInfo::has_sme2() const
{
- return false;
+ return _impl->info.has_sme2();
}
CPUModel CPUInfo::get_cpu_model() const