commit | 0069cc4a298a15c84df5e09e4abebe8ba8a0b8a5 | [log] [tgz] |
---|---|---|
author | Roger Meier <roger@apache.org> | 周三 10月 13 18:10:18 2010 +0000 |
committer | Roger Meier <roger@apache.org> | 周三 10月 13 18:10:18 2010 +0000 |
tree | 9721d855a028e67d4fdefa10b31bbb70b7241929 | |
parent | 4c5689269f767670741bc49648d419d4c6a188f1 [diff] |
THRIFT-916 no errors on GNU/Linux when compiling with CXXFLAGS="-Wall -Wextra -pedantic" git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1022220 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/concurrency/Mutex.h b/lib/cpp/src/concurrency/Mutex.h index 7cedbe3..3ee5c6b 100644 --- a/lib/cpp/src/concurrency/Mutex.h +++ b/lib/cpp/src/concurrency/Mutex.h
@@ -133,7 +133,7 @@ // as to whether we're doing acquireRead() or acquireWrite(). enum RWGuardType { RW_READ = 0, - RW_WRITE = 1, + RW_WRITE = 1 };