Skip to content

Commit c254060

Browse files
committed
Use default instead of a specific case to fix the MSVC warning in sysinfo.cc
1 parent 22994ed commit c254060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third-party/benchmark/src/sysinfo.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ std::vector<CPUInfo::CacheInfo> GetCacheSizesWindows() {
371371
case CacheTrace:
372372
C.type = "Trace";
373373
break;
374-
case CacheUnknown:
374+
default:
375375
C.type = "Unknown";
376376
break;
377377
}

0 commit comments

Comments
 (0)