Hello,
The problem with C++17 is the fact that you are using namespace std;here
If you remove this line and prefix string, vector, etc. with std:: avoids the ambiguity concerning byte. This forum article gave the hint.
Note that the upcoming release of CGAL requires C++17. Switching will also require some changes in CMakeLists.txt files, but that is another story.
Best,
Andreas
Hello, The problem with C++17 is the fact that you are
using namespace std;
hereIf you remove this line and prefix
string
,vector
, etc. withstd::
avoids the ambiguity concerningbyte
. This forum article gave the hint.Note that the upcoming release of CGAL requires C++17. Switching will also require some changes in CMakeLists.txt files, but that is another story. Best, Andreas