Various formatting and consistency fixes

This commit is contained in:
Stevoisiak
2014-11-13 21:28:27 -05:00
parent 5fb94230cd
commit b25e1a2eb4
61 changed files with 143 additions and 178 deletions

View File

@ -3,7 +3,7 @@
// Refer to the license.txt file included.
// Detect the cpu, so we'll know which optimizations to use
// Detect the CPU, so we'll know which optimizations to use
#pragma once
#include <string>
@ -78,11 +78,11 @@ struct CPUInfo
// Call Detect()
explicit CPUInfo();
// Turn the cpu info into a string we can show
// Turn the CPU info into a string we can show
std::string Summarize();
private:
// Detects the various cpu features
// Detects the various CPU features
void Detect();
};