diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h b/clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h index 6eecae97ee4..02d440c21a5 100644 --- a/clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h +++ b/clang-tools-extra/test/clang-tidy/Inputs/modernize-loop-convert/structures.h @@ -98,6 +98,7 @@ class dependent { ElemType & operator[](unsigned); const ElemType & operator[](unsigned) const; ElemType & at(unsigned); + ElemType & at(unsigned, unsigned); const ElemType & at(unsigned) const; // Intentionally evil. |