Author: petdance
Date: Mon Jul 30 20:25:41 2007
New Revision: 20372

Modified:
   trunk/docs/pdds/pdd07_codingstd.pod

Log:
remove redundant, misplaced bullet point about header guards

Modified: trunk/docs/pdds/pdd07_codingstd.pod
==============================================================================
--- trunk/docs/pdds/pdd07_codingstd.pod (original)
+++ trunk/docs/pdds/pdd07_codingstd.pod Mon Jul 30 20:25:41 2007
@@ -624,20 +624,6 @@
 
 =back
 
-=item Header Files
-
-All .h files should include the following "guards" to prevent
-multiple-inclusion:
-
-    /* file header comments */
-
-    #if !defined(PARROT_<FILENAME>_H_GUARD)
-    #define PARROT_<FILENAME>_H_GUARD
-
-    /* body of file */
-
-    #endif /* PARROT_<FILENAME>_H_GUARD */
-
 =item Names of code entities
 
 Code entities such as variables, functions, macros etc (apart from strictly

Reply via email to