Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add enum value from newest Windows SDK #1859

Merged
merged 5 commits into from
Oct 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add space to satisfy formatter
Formatter insists on two space before a comment after a macro...
  • Loading branch information
DKLoehr authored Sep 30, 2024
commit a7357dc47e0c22694e544342f37d45be7d0faab4
2 changes: 1 addition & 1 deletion src/sysinfo.cc
Original file line number Diff line number Diff line change
@@ -353,7 +353,7 @@ std::vector<CPUInfo::CacheInfo> GetCacheSizesWindows() {
C.size = static_cast<int>(cache.Size);
C.type = "Unknown";
switch (cache.Type) {
#ifdef NTDDI_WIN11_GE // Windows SDK version >= 10.0.26100.0
#ifdef NTDDI_WIN11_GE // Windows SDK version >= 10.0.26100.0
case CacheUnknown:
break;
#endif
Loading