• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Weird error situation
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Weird error situation


  • Subject: Re: Weird error situation
  • From: Scott Ribe <email@hidden>
  • Date: Mon, 24 Sep 2007 08:45:27 -0600
  • Thread-topic: Weird error situation

> Given the definition of collision_check above, exactly when do you
> expect it to return false? Since you don't actually return anything
> from collision_check() it always returns true, so tile_down() will also.

Close, but no cigar ;-)

> the address of 'bool tile_right()', will always evaluate as 'true'

This warning means that you're using the address of the function instead of
calling it. In other words, you're doing something like:

 if (tile_down)

When you meant to do something like:

 if (tile_down())

The other posters are right, BTW, that these are extremely elementary C
questions that have nothing to do with Xcode. I'd suggest you find a
beginning C newsgroup or list, and reading (or re-reading) a beginning C
book. Sorry, I don't have more specific recommendations.

--
Scott Ribe
email@hidden
http://www.killerbytes.com/
(303) 722-0567 voice


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Weird error situation
      • From: Adam <email@hidden>
    • Re: Weird error situation
      • From: Laurence Harris <email@hidden>
    • Re: Weird error situation
      • From: Laurence Harris <email@hidden>
References: 
 >Re: Weird error situation (From: Laurence Harris <email@hidden>)

  • Prev by Date: Re: Increasing your app's stack size
  • Next by Date: Re: Resolving 'Cannot find bounds of current function' error
  • Previous by thread: Re: Weird error situation
  • Next by thread: Re: Weird error situation
  • Index(es):
    • Date
    • Thread