- Prepare for <sstream>.

This commit is contained in:
Sylvain Pion 2000-11-29 11:27:14 +00:00
parent 1292eb65a2
commit de3a97ad1c
2 changed files with 4 additions and 2 deletions

View File

@ -32,6 +32,7 @@
#include <string>
#include <strstream> // deprecated
// #include <sstream>
CGAL_BEGIN_NAMESPACE
@ -384,8 +385,9 @@ template < class R >
void
parse_point(const char* pickpoint, Point_3<R> &point)
{
// std::stringstream ss;
std::strstream ss;
ss << pickpoint << std::ends ;
ss << pickpoint << std::ends;
double x, y, z, w;
char parenthesis;

View File

@ -26,7 +26,7 @@
#include <CGAL/basic.h>
#include <CGAL/IO/Geomview_stream.h>
#include <strstream>
#include <strstream> // deprecated
#include <csignal>
#include <cerrno>
#include <unistd.h>