trying to please MSVC

This commit is contained in:
Sébastien Loriot 2015-07-22 09:07:12 +02:00
parent 62906461f2
commit eaa6e6002d
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ file_input(std::list<Point>& L)
int n;
is >> n;
std::cout << "Reading " << n << " points" << std::endl;
Point_base p(0,0,0);
Point_base p(1,2,3);
for( ; n>0 ; n--)
{
is >> p;