Re: ver 4.0 builtin_chosen_warning ???
- Posted by DerekParnell (admin) Sep 05, 2008
- 1022 views
bernie said...
What the heck does mean ??? what compare() ??? What global/export function ??? Where in my 3,371 line program ??????????????? Warning ( builtin_chosen_warning ): built-in compare() chosen over global/export function in: D:\#EU40\INCLUDE\std/map.e Press Enter...
It means that your program uses 'compare()' somewhere, and this is just letting you know that your program is calling the built-in compare() rather than the one inside map.e. In the past, Euphoria would have called the map:compare() without telling you.
To get rid of this message, add 'eu:' to the compare() calls in your program. 'eu:' is the namespace for built-in routines.