fixed #679: add constructor for CCArray

This commit is contained in:
minggo 2011-08-19 16:15:06 +08:00
parent 0a9f6c1f09
commit 1f9f1f59d4
1 changed files with 3 additions and 0 deletions

View File

@ -95,6 +95,9 @@ public:
public:
ccArray* data;
private:
CCArray() : data(NULL) {};
};
}