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

Unified Diff: compiled/Map.h

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/ElemHide.cpp ('k') | compiled/String.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/Map.h
diff --git a/compiled/Map.h b/compiled/Map.h
index d6a546c19e8ebf52e5e0baa9d8111fc8d2697426..9812a6b358b2120380834c51d8543a788327844c 100644
--- a/compiled/Map.h
+++ b/compiled/Map.h
@@ -290,9 +290,9 @@ namespace Map_internal
{
#if defined(DEBUG)
assert2(mInsertCounter == mMap->mInsertCounter,
- u"There should be no insert operations performed between map.find() and assign()"_str);
+ ABP_TEXT("There should be no insert operations performed between map.find() and assign()"_str));
assert2(mHash == entry_type::hash(key),
- u"The keys used in map.find() and assign() should be identical"_str);
+ ABP_TEXT("The keys used in map.find() and assign() should be identical"_str));
#endif
mMap->assign(this->mEntry, entry_type(key, value));
« no previous file with comments | « compiled/ElemHide.cpp ('k') | compiled/String.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld