- Removed a const for SunPro.

This commit is contained in:
Sylvain Pion 2001-08-15 16:52:25 +00:00
parent 0278dd98d2
commit 1e5ae7cbc4
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,8 @@
CHANGES to the Geomview package.
Ver 3.22 (15 August 2001)
- Removed a "const" for SunPro.
Ver 3.21 (15 August 2001)
- Add missing #includes for SunPro.

View File

@ -24,6 +24,7 @@
#ifndef CGAL_GEOMVIEW_STREAM_H
#define CGAL_GEOMVIEW_STREAM_H
#include <CGAL/basic.h>
#include <CGAL/Bbox_2.h>
#include <CGAL/Bbox_3.h>
#include <CGAL/IO/Color.h>
@ -205,7 +206,7 @@ private:
double radius; // radius of vertices
int in, out; // file descriptors for input and output pipes
int pid; // the geomview process identification
std::map<const std::string, int> id; // used to get a unique ID per type.
std::map<std::string, int> id; // used to get a unique ID per type.
};
// Factorize code for Point_2 and Point_3.