mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
b591762987
commit
dbdba55c4b
1 changed files with 10 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue