Commit 08e9036f authored by kenton@google.com's avatar kenton@google.com

Fix obvious syntax error that somehow works fine on MSVC and GCC 3.x-win32.

parent 529a843f
...@@ -76,7 +76,7 @@ class Subprocess { ...@@ -76,7 +76,7 @@ class Subprocess {
#ifdef _WIN32 #ifdef _WIN32
// Given an error code, returns a human-readable error message. This is // Given an error code, returns a human-readable error message. This is
// defined here so that CommandLineInterface can share it. // defined here so that CommandLineInterface can share it.
static string Subprocess::Win32ErrorMessage(DWORD error_code); static string Win32ErrorMessage(DWORD error_code);
#endif #endif
private: private:
......
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