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

Unified Diff: compiled/filter/ActiveFilter.cpp

Issue 29411657: Noissue - [emscripten] Address compiler warnings (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created April 13, 2017, 3:46 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
Index: compiled/filter/ActiveFilter.cpp
===================================================================
--- a/compiled/filter/ActiveFilter.cpp
+++ b/compiled/filter/ActiveFilter.cpp
@@ -21,18 +21,18 @@
#include "../StringScanner.h"
namespace
{
const DependentString DEFAULT_DOMAIN(u""_str);
}
ActiveFilter::ActiveFilter(Type type, const String& text, bool ignoreTrailingDot)
- : Filter(type, text), mDisabled(false), mHitCount(0), mLastHit(0),
- mIgnoreTrailingDot(ignoreTrailingDot)
+ : Filter(type, text), mIgnoreTrailingDot(ignoreTrailingDot),
+ mDisabled(false), mHitCount(0), mLastHit(0)
{
}
ActiveFilter::DomainMap* ActiveFilter::GetDomains() const
{
return mDomains.get();
}
« compile ('K') | « compiled/StringMap.h ('k') | compiled/filter/Filter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld