Fixed missing } in last commit.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29171 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2009-12-27 14:37:41 +00:00
parent ea5f15deb0
commit a19f62698a

View file

@ -1,7 +1,8 @@
#ifdef __clang__
#define FOR_IN(type, var, collection) \
for (type var in collection)
for (type var in collection)\
{
#define END_FOR_IN(collection) }
#else