diff options
Diffstat (limited to 'llvm/unittests/ADT/SmallPtrSetTest.cpp')
| -rw-r--r-- | llvm/unittests/ADT/SmallPtrSetTest.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/SmallPtrSetTest.cpp b/llvm/unittests/ADT/SmallPtrSetTest.cpp index a627091..fe7a827 100644 --- a/llvm/unittests/ADT/SmallPtrSetTest.cpp +++ b/llvm/unittests/ADT/SmallPtrSetTest.cpp @@ -57,7 +57,7 @@ TEST(SmallPtrSetTest, GrowthTest) {    SmallPtrSet<int *, 4> s; -  typedef SmallPtrSet<int *, 4>::iterator iter; +  using iter = SmallPtrSet<int *, 4>::iterator;    s.insert(&buf[0]);    s.insert(&buf[1]);  | 
