Errata

Code Complete

Errata for Code Complete

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 266
Second code sample, line 4.

The code sample says "if ( recalcNeeded = false )". Assignment is illogical in this context, as the expression would never be true. It should be changed to "if ( recalcNeeded == false )" or even "if ( !recalcNeeded )".

Sam Doiron  Feb 21, 2014