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

Unified Diff: compiled/library.cpp

Issue 29721697: Noissue - fix support of namespace, external user-config.h and debug configuration (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git@caf1800ce0342583de4c0320745f0fdb3b55bd01
Patch Set: get rid of the warning Created March 13, 2018, 6:17 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.h ('k') | meson.build » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/library.cpp
diff --git a/compiled/library.cpp b/compiled/library.cpp
index 1dcabaaa352a2dc5f3a35ac3a17ca4e29e860ee8..68a2fd22edd26ba37e7672273ebf3f1d4b29e147 100644
--- a/compiled/library.cpp
+++ b/compiled/library.cpp
@@ -71,7 +71,7 @@ bool TestRegExp(RegExpID id, const String& str)
if ((id < regexPool.size()) && regexPool[id])
return std::regex_match(StdWStringFromString(str), *regexPool[id]);
- assert2(id < regexPool.size() && regexPool[id], "Invalid RegExp index.");
+ assert2(id < regexPool.size() && regexPool[id], u"Invalid RegExp index."_str);
return false;
}
« no previous file with comments | « compiled/library.h ('k') | meson.build » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld