diff options
author | Lei Zhang <thestig@chromium.org> | 2018-03-16 19:25:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-16 19:25:30 +0000 |
commit | 9d7c7ff0a5f0da6e7574557e5a8e82b9b5b7c1ae (patch) | |
tree | a9559fdcd8e24951985968cc9f8c32c6f8da1b5d /core/fxcrt/xml/cfx_xmlinstruction.cpp | |
parent | 7d75650672a848428aaadb603b2814d33dfb479f (diff) | |
download | pdfium-9d7c7ff0a5f0da6e7574557e5a8e82b9b5b7c1ae.tar.xz |
Make more variables const-ref.chromium/3373
Found by ClangTidy.
BUG=pdfium:1040
Change-Id: I6d7cb26ae2d12f5650f73596d0b991234b076f57
Reviewed-on: https://pdfium-review.googlesource.com/28712
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_xmlinstruction.cpp')
-rw-r--r-- | core/fxcrt/xml/cfx_xmlinstruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/xml/cfx_xmlinstruction.cpp b/core/fxcrt/xml/cfx_xmlinstruction.cpp index dabd538b4b..35b68e4d7d 100644 --- a/core/fxcrt/xml/cfx_xmlinstruction.cpp +++ b/core/fxcrt/xml/cfx_xmlinstruction.cpp @@ -62,7 +62,7 @@ void CFX_XMLInstruction::Save( AttributeToString(it.first, it.second).AsStringView()); } - for (auto target : m_TargetData) { + for (const WideString& target : m_TargetData) { WideString ws = L" \""; ws += target; ws += L"\""; |