|
On the bottom of page 291, the descriptions in the code snippet are reversed. The book has this:
//#ifndef
[Code to be executed if the preprocessor define exists]
//#else
[Code exectued if the preprocessor define does not exist]
//#endif
When it should actually be this:
//#ifndef
[Code exectued if the preprocessor define does not exist]
//#else
[Code to be executed if the preprocessor define exists]
//#endif
|
|
Last Updated on Wednesday, 02 December 2009 09:40 |