mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Replace OVERRIDE with override (see issue #3140)
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=f5669491fd2475dc9755a6e624a737312711d2d3$
|
||||
// $hash=097d4efa73574d6bb5edac6915296883a5ccdc29$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_
|
||||
@@ -35,11 +35,11 @@ class CefWaitableEventCToCpp
|
||||
virtual ~CefWaitableEventCToCpp();
|
||||
|
||||
// CefWaitableEvent methods.
|
||||
void Reset() OVERRIDE;
|
||||
void Signal() OVERRIDE;
|
||||
bool IsSignaled() OVERRIDE;
|
||||
void Wait() OVERRIDE;
|
||||
bool TimedWait(int64 max_ms) OVERRIDE;
|
||||
void Reset() override;
|
||||
void Signal() override;
|
||||
bool IsSignaled() override;
|
||||
void Wait() override;
|
||||
bool TimedWait(int64 max_ms) override;
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CTOCPP_WAITABLE_EVENT_CTOCPP_H_
|
||||
|
Reference in New Issue
Block a user