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: rebase Created March 15, 2018, 1: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
« no previous file with comments | « compiled/library.cpp ('k') | compiled/subscription/DownloadableSubscription.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « compiled/library.cpp ('k') | compiled/subscription/DownloadableSubscription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld