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

Unified Diff: compiled/storage/FilterStorage.cpp

Issue 29721753: Issue 6180 - use ABP_TEXT everywhere in order to let String be a UTF-8 string (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git@adb2678354813ce5b6de095072954c5a784a7bc4
Patch Set: Created March 13, 2018, 6:20 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/storage/FilterStorage.cpp
diff --git a/compiled/storage/FilterStorage.cpp b/compiled/storage/FilterStorage.cpp
index 41e5a0fc9e4aef585f116270f6c295393f74187b..58693afbc72ed157bbc6903d5645bdff72317a23 100644
--- a/compiled/storage/FilterStorage.cpp
+++ b/compiled/storage/FilterStorage.cpp
@@ -114,7 +114,7 @@ bool FilterStorage::MoveSubscription(Subscription& subscription,
const Subscription* insertBefore)
{
int oldPos = IndexOfSubscription(subscription);
- assert2(oldPos >= 0, u"Attempt to move a subscription that is not in the list"_str);
+ assert2(oldPos >= 0, ABP_TEXT("Attempt to move a subscription that is not in the list"_str));
if (oldPos == -1)
return false;

Powered by Google App Engine
This is Rietveld