1. Euphoria 40b4 problem
- Posted by DonCole Aug 12, 2012
- 1285 views
Hello everyone,
No matter what I do I keep getting errors with following references:
upper
lower
match_all
call_back
I know I must have them somewhere outside of euphoria-40b4.
I can't find them anywhere.
How can I trace them out?
Don Cole
2. Re: Euphoria 40b4 problem
- Posted by jimcbrown (admin) Aug 12, 2012
- 1233 views
Hello everyone,
No matter what I do I keep getting errors with following references:
Let's see...
upper
lower
std/text.e
match_all
std/search.e
call_back
std/dll.e
I know I must have them somewhere outside of euphoria-40b4.
I can't find them anywhere.
How can I trace them out?
Don Cole
Just search euphoria/include/std (the entire directory and its subdirectories) for that routine name. You could also try searching the online manual.
3. Re: Euphoria 40b4 problem
- Posted by DonCole Aug 15, 2012
- 1051 views
Thank you jim,
What I didn't mention in my other post was that the first "following references" error I got was match_all.
I finally found that I had my own match_all in one of my own includes.
This was causing a conflict between the two match_alls.
So I changed the name of my match_all to my_match_all and this fixed the problem.
The next problem I get is lower. So I'm looking like crazy for my own lower.
Now I see that with Ver.4 in order to use lower you have to include std\text.e
NOT so with Ver.3.
This is a good thing for someone switching from Ver.3 to Ver.4 to know.
Don Cole