diff options
author | Haojian Wu <hokein@google.com> | 2016-02-08 15:59:42 +0000 |
---|---|---|
committer | Haojian Wu <hokein@google.com> | 2016-02-08 15:59:42 +0000 |
commit | 1e3c32b38a17920a3bc7e598b764dee4bb176b39 (patch) | |
tree | ca2b9d328ae17b71c4ae7825d8c2e55e77641e97 /clang-tools-extra/docs/clang-tidy | |
parent | 45bfe4cc8a07cec3c635da9355c30537f2bfde3b (diff) | |
download | bcm5719-llvm-1e3c32b38a17920a3bc7e598b764dee4bb176b39.tar.gz bcm5719-llvm-1e3c32b38a17920a3bc7e598b764dee4bb176b39.zip |
[clang-tidy] Fix assertion failure on `at` function in modernize-loop-convert.
Reviewers: alexfh
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D16926
llvm-svn: 260107
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/modernize-loop-convert.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/modernize-loop-convert.rst b/clang-tools-extra/docs/clang-tidy/checks/modernize-loop-convert.rst index e65c9e59bcd..9ef9772fda1 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/modernize-loop-convert.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/modernize-loop-convert.rst @@ -89,7 +89,7 @@ Original: // reasonable conversion for (vector<int>::iterator it = v.begin(); it != v.end(); ++it) - cout << *it;* + cout << *it; // reasonable conversion for (int i = 0; i < v.size(); ++i) |