summaryrefslogtreecommitdiff
path: root/system_wrappers/source/critical_section_posix.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-08-01 17:26:15 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-08-01 17:26:15 +0000
commit7affcd2236a1e8e9d5d70f21dc7a5c385f509d37 (patch)
tree09bb9d6c474bb73639156ceeadd9b359228c37eb /system_wrappers/source/critical_section_posix.h
parent7b2147f8975308f753380cf0248b84a733970a10 (diff)
downloadwebrtc-7affcd2236a1e8e9d5d70f21dc7a5c385f509d37.tar.gz
Fix some chromium-style warnings in webrtc/system_wrappers/
BUG=163 R=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1906004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4464 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'system_wrappers/source/critical_section_posix.h')
-rw-r--r--system_wrappers/source/critical_section_posix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/system_wrappers/source/critical_section_posix.h b/system_wrappers/source/critical_section_posix.h
index 6a0426c0..a5ec3673 100644
--- a/system_wrappers/source/critical_section_posix.h
+++ b/system_wrappers/source/critical_section_posix.h
@@ -23,8 +23,8 @@ class CriticalSectionPosix : public CriticalSectionWrapper {
virtual ~CriticalSectionPosix();
- virtual void Enter();
- virtual void Leave();
+ virtual void Enter() OVERRIDE;
+ virtual void Leave() OVERRIDE;
private:
pthread_mutex_t mutex_;