re- short-circuit
- Posted by Bernie <xotron at PCOM.NET> Oct 28, 2000
- 497 views
On Sat, 28 Oct 2000 20:19:56 +0100, craig <wonderpage at THEFREEINTERNET.CO.UK> wrote: >i've been experimenting with library routines for sprites by collin taylor. >When i run a program using the libraries i get an error message on >execution:- > > >c:\\euphoria\include\bitmap.e :428.call to getc() might be short circuited > >does anybody know what the message could be referring to? >thanks! craig: It's just a warning message that the program will by-pass some code ( short-circuit ) the first time a condition is met, rather than continuing on thru the rest of a statement. This makes code run faster. I personaly think that it is a unnecessary and is anoying for the interpeter to report it because its obvious. If you read the REFERENCE doc you will find it explained in there. To shut it off you have to use without warning statement.