Commit e232cca4 authored by Kenton Varda's avatar Kenton Varda

Change Win32 TODO(now)s to TODO(soon)s.

parent 559044bf
...@@ -136,7 +136,7 @@ Exception::Type typeOfErrno(int error) { ...@@ -136,7 +136,7 @@ Exception::Type typeOfErrno(int error) {
Exception::Type typeOfWin32Error(DWORD error) { Exception::Type typeOfWin32Error(DWORD error) {
switch (error) { switch (error) {
// TODO(now): This needs more work. // TODO(soon): This needs more work.
case WSAETIMEDOUT: case WSAETIMEDOUT:
return Exception::Type::OVERLOADED; return Exception::Type::OVERLOADED;
...@@ -356,8 +356,8 @@ void Debug::Fault::init( ...@@ -356,8 +356,8 @@ void Debug::Fault::init(
const char* file, int line, Win32Error osErrorNumber, const char* file, int line, Win32Error osErrorNumber,
const char* condition, const char* macroArgs, ArrayPtr<String> argValues) { const char* condition, const char* macroArgs, ArrayPtr<String> argValues) {
LPVOID ptr; LPVOID ptr;
// TODO(now): Use FormatMessageW() instead. // TODO(soon): Use FormatMessageW() instead.
// TODO(now): Why doesn't this work for winsock errors? // TODO(soon): Why doesn't this work for winsock errors?
DWORD result = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | DWORD result = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS, FORMAT_MESSAGE_IGNORE_INSERTS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment