[cfe-commits] r72528 - /cfe/trunk/test/SemaTemplate/example-dynarray.cpp

Douglas Gregor dgregor at apple.com
Thu May 28 09:41:44 PDT 2009


Author: dgregor
Date: Thu May 28 11:41:44 2009
New Revision: 72528

URL: http://llvm.org/viewvc/llvm-project?rev=72528&view=rev
Log:
Add the missing public: thanks, Fariborz

Modified:
    cfe/trunk/test/SemaTemplate/example-dynarray.cpp

Modified: cfe/trunk/test/SemaTemplate/example-dynarray.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaTemplate/example-dynarray.cpp?rev=72528&r1=72527&r2=72528&view=diff

==============================================================================
--- cfe/trunk/test/SemaTemplate/example-dynarray.cpp (original)
+++ cfe/trunk/test/SemaTemplate/example-dynarray.cpp Thu May 28 11:41:44 2009
@@ -4,6 +4,7 @@
 
 template<typename T>
 class dynarray {
+public:
   dynarray() { Start = Last = End = 0; }
 
   dynarray(const dynarray &other) {





More information about the cfe-commits mailing list