> > Well, some are in < > and others are in " ". What's the difference? > _______________________________________________
< > looks for include files just in the header search paths, that’s used mostly for system includes. It doesn’t search user type paths, ie the code you’re compiling. “ “ looks for files in the user paths first, like the current working directory and anything else set as a user path if any, and then goes and searches the system paths too. So if you have used < > to try and include your local source file, it won’t find it. _______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to [email protected]
