Replace OVERRIDE with override (see issue #3140)

This commit is contained in:
Marshall Greenblatt
2021-06-17 15:43:06 -04:00
parent 9c7367bd4e
commit 6d80ec69d7
149 changed files with 2076 additions and 2076 deletions

View File

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=b6fc50fa3a6e0156743a5c3fce97b1a683e1720a$
// $hash=a2b61cff85a5bf35797134b63606e4a043003f45$
//
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_
@@ -34,14 +34,14 @@ class CefV8ExceptionCToCpp : public CefCToCppRefCounted<CefV8ExceptionCToCpp,
virtual ~CefV8ExceptionCToCpp();
// CefV8Exception methods.
CefString GetMessage() OVERRIDE;
CefString GetSourceLine() OVERRIDE;
CefString GetScriptResourceName() OVERRIDE;
int GetLineNumber() OVERRIDE;
int GetStartPosition() OVERRIDE;
int GetEndPosition() OVERRIDE;
int GetStartColumn() OVERRIDE;
int GetEndColumn() OVERRIDE;
CefString GetMessage() override;
CefString GetSourceLine() override;
CefString GetScriptResourceName() override;
int GetLineNumber() override;
int GetStartPosition() override;
int GetEndPosition() override;
int GetStartColumn() override;
int GetEndColumn() override;
};
#endif // CEF_LIBCEF_DLL_CTOCPP_V8EXCEPTION_CTOCPP_H_