Tools
asserts.txt
Associated article: Improve Your Programming with Asserts
Tags: Tools
Published source code accompanying the article by Bruce D. Rosenblum in which he shows how you can use asserts to tack and fix bugs faster. Also see ASSERTS.ZIP.
Improve Your Programming with Asserts by Bruce D. Rosenblum Example 1: (a) h = GlobalAlloc(size_t, flags); ASSERT(h != NULL, "Allocation failed"); (b) m_pBtn = new CButton (); ASSERT(m_pBtn != NULL, "Button not instantiated"); Example 2: m_bmpSplash....


