Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Unified Diff: Source/core/editing/MarkupAccumulator.cpp

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/editing/InsertTextCommand.cpp ('k') | Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/MarkupAccumulator.cpp
diff --git a/Source/core/editing/MarkupAccumulator.cpp b/Source/core/editing/MarkupAccumulator.cpp
index 0dd6adf8c8282d0b840bcda4951a3b8a1a8310e8..1ca35669aa1c4116d91cf226a32a892f117bcbd9 100644
--- a/Source/core/editing/MarkupAccumulator.cpp
+++ b/Source/core/editing/MarkupAccumulator.cpp
@@ -394,7 +394,7 @@ void MarkupAccumulator::appendElement(StringBuilder& result, Element& element, N
if (element.hasAttributes()) {
unsigned length = element.attributeCount();
- for (unsigned int i = 0; i < length; i++)
+ for (unsigned i = 0; i < length; i++)
appendAttribute(result, element, element.attributeItem(i), namespaces);
}
« no previous file with comments | « Source/core/editing/InsertTextCommand.cpp ('k') | Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698