GLU: fix asst warnings
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>
Sat, 13 Sep 2008 20:20:14 +0000 (14:20 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sat, 13 Sep 2008 20:20:14 +0000 (14:20 -0600)
src/glu/sgi/libnurbs/interface/mystdio.h
src/glu/sgi/libnurbs/internals/backend.cc
src/glu/sgi/libnurbs/internals/backend.h
src/glu/sgi/libnurbs/internals/bufpool.cc
src/glu/sgi/libnurbs/internals/bufpool.h
src/glu/sgi/libnurbs/internals/knotvector.cc
src/glu/sgi/libnurbs/internals/knotvector.h
src/glu/sgi/libnurbs/internals/nurbstess.cc
src/glu/sgi/libnurbs/internals/nurbstess.h

index 6d737257f7e062e045beaaf9bac5363002008c38..21c047c8aee634eb8b968c15ade2141c7d719228 100644 (file)
@@ -43,7 +43,7 @@
 #define __glumystdio_h_
 
 #ifdef STANDALONE
-inline void _glu_dprintf( char *, ... ) { }
+inline void _glu_dprintf( const char *, ... ) { }
 #endif
 
 #ifdef LIBRARYBUILD
@@ -51,12 +51,12 @@ inline void _glu_dprintf( char *, ... ) { }
 #include <stdio.h>
 #define _glu_dprintf printf
 #else
-inline void _glu_dprintf( char *, ... ) { }
+inline void _glu_dprintf( const char *, ... ) { }
 #endif
 #endif
 
 #ifdef GLBUILD
-inline void _glu_dprintf( char *, ... ) { }
+inline void _glu_dprintf( const char *, ... ) { }
 #endif
 
 #ifndef NULL
index 97775a9768432001451f5c8c5948cd74e7b7d5e2..c4123fe62717f403cd8a2359a5e1a642b9c31cce 100644 (file)
@@ -246,7 +246,7 @@ Backend::evalVStrip(int n_left, REAL u_left, REAL* left_val,
  *-------------------------------------------------------------------------
  */
 void
-Backend::bgntmesh( char * )            
+Backend::bgntmesh( const char * )              
 {
 #ifndef NOWIREFRAME
 
index c1f00b1a01176da57c842c753bdb54c020089db7..6f1d39416f03545cc88f3487b5c36d63d5f3744b 100644 (file)
@@ -65,7 +65,7 @@ public:
     void               surfbbox( long, REAL *, REAL * );
     void               surfgrid( REAL, REAL, long, REAL, REAL, long ); 
     void               surfmesh( long, long, long, long ); 
-    void               bgntmesh( char * );
+    void               bgntmesh( const char * );
     void               endtmesh( void );
     void               swaptmesh( void );
     void               tmeshvert( GridTrimVertex * );
index d8d9c23db311ad101d1e3a58bff9c5594dc86683..1edb0692538645c2337a8dbdd8b8ad4dfa2d1e63 100644 (file)
@@ -48,7 +48,7 @@
  * Pool - allocate a new pool of buffers
  *-----------------------------------------------------------------------------
  */
-Pool::Pool( int _buffersize, int initpoolsize, char *n )
+Pool::Pool( int _buffersize, int initpoolsize, const char *n )
 {
     if((unsigned)_buffersize < sizeof(Buffer))
         buffersize = sizeof(Buffer);
index 02e4ff247b69efd73934bde7fec654da19e29ab5..b48c4404f8e9d01f46d882d2611c84a8776b3045 100644 (file)
@@ -55,7 +55,7 @@ class Buffer {
 
 class Pool {
 public:
-                       Pool( int, int, char * );
+                       Pool( int, int, const char * );
                        ~Pool( void );
     inline void*       new_buffer( void );
     inline void                free_buffer( void * );
@@ -74,7 +74,7 @@ protected:
     int                        nextfree;               /* byte offset past next free buffer */
     int                        initsize;
     enum Magic { is_allocated = 0xf3a1, is_free = 0xf1a2 };
-    char               *name;                  /* name of the pool */
+    const char         *name;                  /* name of the pool */
     Magic              magic;                  /* marker for valid pool */
 };
 
index 610046674cd1adf3847aea92e950ada22c9f863d..9eb5cbace948e05a232aebac74ca54e37a9033b9 100644 (file)
@@ -126,7 +126,7 @@ int Knotvector::validate( void )
     return 0;
 }
 
-void Knotvector::show( char *msg )
+void Knotvector::show( const char *msg )
 {
 #ifndef NDEBUG
     _glu_dprintf( "%s\n", msg );
index bb1e5933267def7b38721fa8ae04de46160a0a25..4860ea2588544ec163ac66c149efc82b3cb9b049 100644 (file)
@@ -49,7 +49,7 @@ struct Knotvector { /* a knot vector */
                        ~Knotvector( void );
     void               init( long, long, long, INREAL * );
     int                        validate( void );
-    void               show( char * );
+    void               show( const char * );
 
     long               order;          /* order of spline  */
     long               knotcount;      /* number of knots  */
index adf7c74626df46cfc4045234f730548814624bed..aef56f317e033496f92e5bde8ac995aec39edd88 100644 (file)
@@ -677,7 +677,7 @@ NurbsTessellator::do_nurbserror( int msg )
 }
 
 int 
-NurbsTessellator::do_check_knots( Knotvector *knots, char *msg )
+NurbsTessellator::do_check_knots( Knotvector *knots, const char *msg )
 {
     int status = knots->validate();
     if( status ) {
index 3577088a9c23cec001263d0f33b4a391b6a19041..0e81facc0f36c9108514cbc4318f579b29892a88 100644 (file)
@@ -112,7 +112,7 @@ protected:
 private:
 
     void               resetObjects( void );
-    int                        do_check_knots( Knotvector *, char * );
+    int                        do_check_knots( Knotvector *, const char * );
     void               do_nurbserror( int );
     void               do_bgncurve( O_curve * );
     void               do_endcurve( void );