Warn user that the file hasn't been converted to new collection

scheme, and comment out old code.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1470 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-04-18 01:55:26 +00:00
parent b591762987
commit dbdba55c4b

View file

@ -1,9 +1,12 @@
/* A simple demonstration of the GNU Dictionary object.
In this example the Dictionary holds int's which are keyed by strings. */
#include <gnustep/base/stdall.h>
#include <gnustep/base/all.h>
#include <gnustep/base/Dictionary.h>
#warning This file has not been updated for the new collection classes
#if 0
int main()
{
id d;
@ -38,3 +41,9 @@ int main()
exit(0);
}
#else
int main()
{
exit (0);
}
#endif /* 0 */