From: Douglas Gregor Date: Thu, 28 May 2009 16:41:44 +0000 (+0000) Subject: Add the missing public: thanks, Fariborz X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c177aa2516511c26aacbd6fa6546b897bb8dd023;p=clang 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 0fcaba3d9b..51eece9e6f 100644 --- a/test/SemaTemplate/example-dynarray.cpp +++ b/test/SemaTemplate/example-dynarray.cpp @@ -4,6 +4,7 @@ template class dynarray { +public: dynarray() { Start = Last = End = 0; } dynarray(const dynarray &other) {