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

Unified Diff: src/plugin/PluginUtil.h

Issue 29332057: Issue #1234 - Replace CString in the traverser (Closed)
Patch Set: rebase Created Dec. 14, 2015, 11:56 a.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: src/plugin/PluginUtil.h
===================================================================
--- a/src/plugin/PluginUtil.h
+++ b/src/plugin/PluginUtil.h
@@ -30,3 +30,9 @@
{
return 0 == s.compare(0, N - 1, beginning);
}
+
+/**
+ * Return a lower-case version of the argument string.
+ * Current version uses 'CString::MakeLower()' to preserve legacy behavior during refactoring.
sergei 2015/12/14 12:17:55 I'm not sure about the latter line. It might be be
Eric 2015/12/14 12:40:23 It's here not to explain the code, but to explain
sergei 2015/12/14 13:28:02 Acknowledged.
+ */
+std::wstring ToLowerString(const std::wstring& s);

Powered by Google App Engine
This is Rietveld