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

Unified Diff: compiled/subscription/UserDefinedSubscription.cpp

Issue 29613611: Noissue - fix debug build (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git
Patch Set: Created Nov. 21, 2017, 12:19 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
« no previous file with comments | « compiled/intrusive_ptr.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/subscription/UserDefinedSubscription.cpp
diff --git a/compiled/subscription/UserDefinedSubscription.cpp b/compiled/subscription/UserDefinedSubscription.cpp
index c53a258626a86f0314fe343e23b77190c53eec3b..90dc0942b0809ccb717ec030323f4dc1ecf862f6 100644
--- a/compiled/subscription/UserDefinedSubscription.cpp
+++ b/compiled/subscription/UserDefinedSubscription.cpp
@@ -56,7 +56,7 @@ bool UserDefinedSubscription::IsDefaultFor(const Filter& filter) const
{
if (filter.mType >= Filter::Type::VALUE_COUNT)
{
- assert2(false, "Filter type exceeds valid range");
+ assert2(false, u"Filter type exceeds valid range"_str);
abort();
}
return mDefaults & filterTypeToCategory[filter.mType];
@@ -66,7 +66,7 @@ void UserDefinedSubscription::MakeDefaultFor(const Filter& filter)
{
if (filter.mType >= Filter::Type::VALUE_COUNT)
{
- assert2(false, "Filter type exceeds valid range");
+ assert2(false, u"Filter type exceeds valid range"_str);
abort();
}
mDefaults |= filterTypeToCategory[filter.mType];
« no previous file with comments | « compiled/intrusive_ptr.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld