commit | f390f634e50720c0b3324c4629212cdc744ba1fe | [log] [tgz] |
---|---|---|
author | Douglas Gregor <doug.gregor@gmail.com> | Thu May 28 16:41:44 2009 +0000 |
committer | Douglas Gregor <doug.gregor@gmail.com> | Thu May 28 16:41:44 2009 +0000 |
tree | 34c02ba9edbdf59f67cebad0a0c616fe2dcb3cf9 | |
parent | c583b1f17d39e8be8db7911e73ad2e007e58112d [diff] [blame] |
Add the missing public: thanks, Fariborz git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72528 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaTemplate/example-dynarray.cpp b/test/SemaTemplate/example-dynarray.cpp index 0fcaba3..51eece9 100644 --- a/test/SemaTemplate/example-dynarray.cpp +++ b/test/SemaTemplate/example-dynarray.cpp
@@ -4,6 +4,7 @@ template<typename T> class dynarray { +public: dynarray() { Start = Last = End = 0; } dynarray(const dynarray &other) {