| Index: compiled/filter/ActiveFilter.cpp | 
| =================================================================== | 
| --- a/compiled/filter/ActiveFilter.cpp | 
| +++ b/compiled/filter/ActiveFilter.cpp | 
| @@ -15,20 +15,17 @@ | 
| * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
| */ | 
|  | 
| #include <cstdio> | 
|  | 
| #include "ActiveFilter.h" | 
| #include "../StringScanner.h" | 
|  | 
| -namespace | 
| -{ | 
| -  const DependentString DEFAULT_DOMAIN(u""_str); | 
| -} | 
| +const DependentString ActiveFilter::DEFAULT_DOMAIN(u""_str); | 
|  | 
| ActiveFilter::ActiveFilter(Type type, const String& text, bool ignoreTrailingDot) | 
| : Filter(type, text), mIgnoreTrailingDot(ignoreTrailingDot), | 
| mDisabled(false), mHitCount(0), mLastHit(0) | 
| { | 
| } | 
|  | 
| ActiveFilter::DomainMap* ActiveFilter::GetDomains() const | 
|  |