aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/subprocess.h
diff options
context:
space:
mode:
authorGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2010-01-20 01:54:38 +0000
committerGravatar kenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2010-01-20 01:54:38 +0000
commit08e9036f61f9dfc9d1e68862d8e5ce00ad3c457a (patch)
tree4647ea7916b35b3fc718e54a1ce335e4f9e17587 /src/google/protobuf/compiler/subprocess.h
parent529a843f2d4a43dbe6505098108697f30cb1d777 (diff)
Fix obvious syntax error that somehow works fine on MSVC and GCC 3.x-win32.
Diffstat (limited to 'src/google/protobuf/compiler/subprocess.h')
-rw-r--r--src/google/protobuf/compiler/subprocess.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/subprocess.h b/src/google/protobuf/compiler/subprocess.h
index f9e8ae8d..7a6fa70c 100644
--- a/src/google/protobuf/compiler/subprocess.h
+++ b/src/google/protobuf/compiler/subprocess.h
@@ -76,7 +76,7 @@ class Subprocess {
#ifdef _WIN32
// Given an error code, returns a human-readable error message. This is
// defined here so that CommandLineInterface can share it.
- static string Subprocess::Win32ErrorMessage(DWORD error_code);
+ static string Win32ErrorMessage(DWORD error_code);
#endif
private: