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

Unified Diff: compiled/subscription/UserDefinedSubscription.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/subscription/UserDefinedSubscription.h
diff --git a/compiled/subscription/UserDefinedSubscription.h b/compiled/subscription/UserDefinedSubscription.h
index 7886b04426d98b688b3e0eee5a7fc500a535cb68..c624b9b3cfc3162dc6fdd3592810071ab0c2d1b5 100644
--- a/compiled/subscription/UserDefinedSubscription.h
+++ b/compiled/subscription/UserDefinedSubscription.h
@@ -17,10 +17,13 @@
#pragma once
+#include "../base.h"
#include "Subscription.h"
#include "../filter/Filter.h"
#include "../bindings/runtime.h"
+ABP_NS_BEGIN
+
class UserDefinedSubscription : public Subscription
{
private:
@@ -47,3 +50,5 @@ inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>()
return static_cast<UserDefinedSubscription*>(this);
}
+
+ABP_NS_END

Powered by Google App Engine
This is Rietveld