mirror of https://github.com/CGAL/cgal
- Prepare for <sstream>.
This commit is contained in:
parent
1292eb65a2
commit
de3a97ad1c
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue