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

Unified Diff: compiled/filter/CommentFilter.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/CommentFilter.h
diff --git a/compiled/filter/CommentFilter.h b/compiled/filter/CommentFilter.h
index c30d0099b4c12ed2a3d4cb9574137a8c552ce8dd..926c5b44ae8d9d720d3005063446dc4ec9460687 100644
--- a/compiled/filter/CommentFilter.h
+++ b/compiled/filter/CommentFilter.h
@@ -17,8 +17,11 @@
#pragma once
+#include "../base.h"
#include "Filter.h"
+ABP_NS_BEGIN
+
class CommentFilter : public Filter
{
public:
@@ -26,3 +29,5 @@ public:
static Type Parse(const String& text);
static CommentFilter* Create(const String& text);
};
+
+ABP_NS_END

Powered by Google App Engine
This is Rietveld