From 7affcd2236a1e8e9d5d70f21dc7a5c385f509d37 Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Thu, 1 Aug 2013 17:26:15 +0000 Subject: 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 --- system_wrappers/source/critical_section_posix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system_wrappers/source/critical_section_posix.h') 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_; -- cgit v1.2.3