Re: Trigraphs?
Re: Trigraphs?
- Subject: Re: Trigraphs?
- From: Scott Thompson <email@hidden>
- Date: Tue, 4 Nov 2003 19:18:11 -0600
On Nov 4, 2003, at 5:47 PM, Ken Wieschhoff wrote:
I seem to have painted myself into a corner.
I was getting a compiler warning for a constant '????' to the effect
of "use -trigraphs" so I did a "get Info" on the specified file and
added "-trigraphs" under the build options.
Well this isn't the correct flag, but now I can't seem to remove or
even change anything under this tab. Selecting and removing the
flag doesn't seem to persist.
1) How do I remove the flag?
2) Why does the following line of code generate an error?
anInfoICEntry.fileType = '????';
Thanks,
Someone asked about something similar earlier and the solution would be
to change the line to read:
anInfoICEntry.fileType = '\?\?\?\?';
The reason the line causes problems is because, as you already noticed,
it confuses the trigraph feature.
Scott
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.
References: | |
| >Trigraphs? (From: Ken Wieschhoff <email@hidden>) |