Skip to content

Commit

Permalink
Replace non-ascii double quotes and delete trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4rr0 committed Mar 16, 2020
1 parent bd874d6 commit 777cda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor_support.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ProcessorSupport {
#elif defined(USING_GCC_COMPILER)
__get_cpuid(0x1, &regs.EAX, &regs.EBX, &regs.ECX, &regs.EDX);
#else
std::cerr << ERROR: please define __cpuid() for this build.\n;
std::cerr << "ERROR: please define __cpuid() for this build.\n";
assert(0);
#endif
if( !( (regs.ECX & BIT(20)) && (regs.ECX & BIT(23)) ) ) return false;
Expand Down

0 comments on commit 777cda3

Please sign in to comment.