# HG changeset patch # User tron # Date 1172169297 0 # Node ID e4401ec19b894f880d4a45ef54a3f25241ec1f1e # Parent 9cdb931d4e647866d93eed4741321f13ae41d924 (svn r8845) -Fix Remove pointless and out of context comment diff --git a/src/macros.h b/src/macros.h --- a/src/macros.h +++ b/src/macros.h @@ -181,8 +181,6 @@ #define ALIGN(x, n) (((x) + (n) - 1) & ~((n) - 1)) /** return the largest value that can be entered in a variable. - * known to work for uint32. - * used by TGP to set the max value of the _patches.generation_seed in its definition */ #define MAX_UVALUE(type) ((type)~(type)0)