소스 검색

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

kenton@google.com 15 년 전
부모
커밋
08e9036f61
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/google/protobuf/compiler/subprocess.h

+ 1 - 1
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: