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

Unified Diff: compiled/filter/RegExpFilter.h

Issue 29613616: Issue 6064 - Put C++ code into a configurable namespace (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git
Patch Set: Fix debug.h to be aligned with assert2 (define vs function) and get rid of a warning in generator.cpp Created Nov. 21, 2017, 2:53 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/RegExpFilter.h
diff --git a/compiled/filter/RegExpFilter.h b/compiled/filter/RegExpFilter.h
index 5bd5fcf6a772419f503742adb0c861ac95302d79..3bd2f4fe5750ca171aa0711ec1460323bd5403ad 100644
--- a/compiled/filter/RegExpFilter.h
+++ b/compiled/filter/RegExpFilter.h
@@ -17,10 +17,13 @@
#pragma once
+#include "../base.h"
#include "Filter.h"
#include "ActiveFilter.h"
#include "../bindings/runtime.h"
+ABP_NS_BEGIN
+
enum class TrippleState {YES, NO, ANY};
struct RegExpFilterData
@@ -111,3 +114,5 @@ public:
bool BINDINGS_EXPORTED Matches(const String& location, int typeMask,
DependentString& docDomain, bool thirdParty, const String& sitekey) const;
};
+
+ABP_NS_END

Powered by Google App Engine
This is Rietveld