Fixed typos

This commit is contained in:
PatrickvL 2016-11-11 11:08:50 +01:00
parent 734fb6504b
commit 2e4b7f6464
1 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ thread_local const DWORD _CurrentThreadId = GetCurrentThreadId();
// TODO : Use Boost.Format http://www.boost.org/doc/libs/1_53_0/libs/format/index.html // TODO : Use Boost.Format http://www.boost.org/doc/libs/1_53_0/libs/format/index.html
thread_local std::string _logPrefix; thread_local std::string _logPrefix;
std::ostream& operator<<(std::ostream& os, const LARGE_INTEGER& value); std::ostream& operator<<(std::ostream& os, const LARGE_INTEGER& value)
{ {
return os << value.QuadPart; return os << value.QuadPart;
} }
@ -54,7 +54,7 @@ std::ostream& operator<<(std::ostream& os, const PULONG& value)
{ {
os << "0x" << (void*)value; os << "0x" << (void*)value;
if (value) if (value)
os << " (->0x" << (void*)*value << "); os << " (->0x" << (void*)*value << ")";
return os; return os;
} }
@ -68,7 +68,7 @@ std::ostream& operator<<(std::ostream& os, const PLARGE_INTEGER& value)
{ {
os << "0x" << (void*)value; os << "0x" << (void*)value;
if (value) if (value)
os << " (->0x" << value->QuadPart << "); os << " (->0x" << value->QuadPart << ")";
return os; return os;
} }