Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/FilterEngine.cpp

Issue 29424794: Noissue - Fix an inconsistent override warning (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Created April 28, 2017, 2:43 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/FilterEngine.cpp
===================================================================
--- a/test/FilterEngine.cpp
+++ b/test/FilterEngine.cpp
@@ -44,17 +44,17 @@
};
template<class FileSystem, class LogSystem>
class FilterEngineTestGeneric : public BaseJsTest
{
protected:
FilterEnginePtr filterEngine;
- void SetUp()
+ void SetUp() override
{
BaseJsTest::SetUp();
jsEngine->SetFileSystem(AdblockPlus::FileSystemPtr(new FileSystem));
jsEngine->SetWebRequest(AdblockPlus::WebRequestPtr(new LazyWebRequest));
jsEngine->SetLogSystem(AdblockPlus::LogSystemPtr(new LogSystem));
filterEngine = AdblockPlus::FilterEngine::Create(jsEngine);
}
void TearDown() override
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld