aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/example-dynarray.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-05-28 16:41:44 +0000
committerDouglas Gregor <dgregor@apple.com>2009-05-28 16:41:44 +0000
commitc177aa2516511c26aacbd6fa6546b897bb8dd023 (patch)
tree34c02ba9edbdf59f67cebad0a0c616fe2dcb3cf9 /test/SemaTemplate/example-dynarray.cpp
parent08e6dc65b283b5b8f4f41a567d3451a3e4501b91 (diff)
Add the missing public: thanks, Fariborz
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/example-dynarray.cpp')
-rw-r--r--test/SemaTemplate/example-dynarray.cpp1
1 files changed, 1 insertions, 0 deletions
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<typename T>
class dynarray {
+public:
dynarray() { Start = Last = End = 0; }
dynarray(const dynarray &other) {