mirror of https://github.com/CGAL/cgal
- Removed a const for SunPro.
This commit is contained in:
parent
0278dd98d2
commit
1e5ae7cbc4
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue