summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-15 03:24:22 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-15 03:24:22 +0000
commitb91aa431edf173002f55923f5d406f5768388522 (patch)
tree76890cef3efeeafd71c020dbb6ee4cf1526aa457
parent783ebc09ffebc0dd9bc71673b01779c8a1d7de2f (diff)
downloadATCD-b91aa431edf173002f55923f5d406f5768388522.tar.gz
ack'ed Eric Newton on ifndef for header file protection
-rw-r--r--docs/ACE-guidelines.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/ACE-guidelines.html b/docs/ACE-guidelines.html
index cfe40056943..707dafff283 100644
--- a/docs/ACE-guidelines.html
+++ b/docs/ACE-guidelines.html
@@ -163,9 +163,12 @@ bgcolor="#ffffff">
This exact construct (note the <code>#ifndef</code>)
is optimized by many compilers such they only open the
- file once per compilation unit. <strong>No</strong> code
- can appear after the final <code>#endif</code> for the
- optimization to be effective and correct.<p>
+ file once per compilation unit. Thanks to Eric C. Newton
+ &lt;ecn@smart.net&gt; for pointing that out.<p>
+
+ <strong>No</strong> code can appear after the final
+ <code>#endif</code> for the optimization to be effective and
+ correct.<p>
</ul>
<li><strong>C++ Syntax and Constructs</strong><p>