# HG changeset patch # User diego # Date 1192645391 0 # Node ID aebcb17098dcad3af691d59c17bec2149e9fba4f # Parent a2b978ef3973ecaedb97084e852936b4b670014f Clarify comment that explains why this header lacks multiple inclusion guards. diff -r a2b978ef3973 -r aebcb17098dc imgconvert_template.h --- a/imgconvert_template.h Wed Oct 17 11:19:42 2007 +0000 +++ b/imgconvert_template.h Wed Oct 17 18:23:11 2007 +0000 @@ -19,8 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -/* This header has no multiple inclusion guards as it gets - * included multiple times. */ +/* This header intentionally has no multiple inclusion guards. It is meant to + * be included multiple times and generates different code depending on the + * value of certain #defines. */ #ifndef RGB_OUT #define RGB_OUT(d, r, g, b) RGBA_OUT(d, r, g, b, 0xff)