diff options
author | Chris Robinson <[email protected]> | 2023-05-04 07:30:33 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-04 07:30:33 -0700 |
commit | 40483b512218bab50fccaaeb11b51e5ca528fbe1 (patch) | |
tree | aaf42203b2a6e2b7ba900ab535f6dafb94a00a2a /core/cpu_caps.cpp | |
parent | 471592b258d798bb706ce92c1ccd4d5794999490 (diff) |
Use std::optional instead of a custom implementation
Diffstat (limited to 'core/cpu_caps.cpp')
-rw-r--r-- | core/cpu_caps.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/cpu_caps.cpp b/core/cpu_caps.cpp index d4b4d86c..165edb24 100644 --- a/core/cpu_caps.cpp +++ b/core/cpu_caps.cpp @@ -17,6 +17,7 @@ #include <intrin.h> #endif +#include <algorithm> #include <array> #include <cctype> #include <string> |