Skip to content

Commit

Permalink
Merge branch 'main' into fixsan
Browse files Browse the repository at this point in the history
  • Loading branch information
dmah42 authored Feb 5, 2025
2 parents 20fcc91 + c35af58 commit 2ff66da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sysinfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,7 @@ int GetNumCPUsImpl() {
int GetNumCPUs() {
int num_cpus = GetNumCPUsImpl();
if (num_cpus < 1) {
std::cerr << "Unable to extract number of CPUs. If your platform uses "
"/proc/cpuinfo, custom support may need to be added.\n";
std::cerr << "Unable to extract number of CPUs.\n";
/* There is at least one CPU which we run on. */
num_cpus = 1;
}
Expand Down

0 comments on commit 2ff66da

Please sign in to comment.