Re: ver 4.0 builtin_chosen_warning ???
- Posted by CChris Sep 06, 2008
- 979 views
DerekParnell said...
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.
You can more simply add without warning "builtin_chosen_warning" at the top of your program. Any set of warnings can be enabled/disabled in 4.0.
CChris