Revision: 70121
          http://sourceforge.net/p/brlcad/code/70121
Author:   brlcad
Date:     2017-08-24 14:17:51 +0000 (Thu, 24 Aug 2017)
Log Message:
-----------
the cv header doesn't actually use CHAR_MAX, but the implementation does need 
limits.h

Modified Paths:
--------------
    brlcad/trunk/include/bu/cv.h
    brlcad/trunk/src/libbu/convert.c
    brlcad/trunk/src/libbu/parse.c

Modified: brlcad/trunk/include/bu/cv.h
===================================================================
--- brlcad/trunk/include/bu/cv.h        2017-08-24 13:25:50 UTC (rev 70120)
+++ brlcad/trunk/include/bu/cv.h        2017-08-24 14:17:51 UTC (rev 70121)
@@ -24,7 +24,6 @@
 #include "common.h"
 
 #include <stddef.h> /* for size_t */
-#include <limits.h> /* for CHAR_MAX */
 
 #include "bu/defines.h"
 

Modified: brlcad/trunk/src/libbu/convert.c
===================================================================
--- brlcad/trunk/src/libbu/convert.c    2017-08-24 13:25:50 UTC (rev 70120)
+++ brlcad/trunk/src/libbu/convert.c    2017-08-24 14:17:51 UTC (rev 70121)
@@ -23,6 +23,7 @@
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
+#include <limits.h>
 
 #include "bu/cv.h"
 #include "bu/endian.h"

Modified: brlcad/trunk/src/libbu/parse.c
===================================================================
--- brlcad/trunk/src/libbu/parse.c      2017-08-24 13:25:50 UTC (rev 70120)
+++ brlcad/trunk/src/libbu/parse.c      2017-08-24 14:17:51 UTC (rev 70121)
@@ -26,6 +26,7 @@
 #include <math.h>
 #include <string.h>
 #include <assert.h>
+#include <limits.h>
 
 #include "bu/cv.h"
 #include "bu/log.h"

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to