Re: eu40 build 1188, re:find()
- Posted by bernie Sep 28, 2008
- 974 views
jacquesd said...
somewhere in developpement of euphoria 4.0 re:search() function was replaced by re:find() and I get a warning saying:
Warning ( builtin_chosen ): The built-in find() over rides the global/public find() in: c:\eu40\incl ude\std\regex.e
does it means that somewhere in the code re:find() as been over rides or it means that eventually it will be over ride?
jacques d.
Hi jacques:
That means that somewhere in your code you are including another function
called ' find ' and the parser thinks that you are trying to over-ride the
built-in.
What you have to do is either change the name of your function or use
namespace to tell the parser which function to use.