From f5aae4e8cbca39b6c4f05f4d871b1677888429a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 4 Feb 2016 16:19:30 +0100 Subject: [PATCH] add comments --- CGAL_ImageIO/src/CGAL_ImageIO/analyze_impl.h | 2 +- Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CGAL_ImageIO/src/CGAL_ImageIO/analyze_impl.h b/CGAL_ImageIO/src/CGAL_ImageIO/analyze_impl.h index 23284de3919..21520f5a5c9 100644 --- a/CGAL_ImageIO/src/CGAL_ImageIO/analyze_impl.h +++ b/CGAL_ImageIO/src/CGAL_ImageIO/analyze_impl.h @@ -52,7 +52,7 @@ #define DT_RGB 128 /* */ #define DT_ALL 255 /* */ -#include +#include struct header_key /* header_key */ { /* off + size*/ diff --git a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h index 1b8a5f1a95d..00444fe93f9 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h @@ -149,6 +149,9 @@ namespace CGAL { { public: + // Workaround for a bug in g++4.4 in ADL for function next: + // we provide the types needed for std::iterator_traits, + // although this descriptor is not an iterator. typedef void iterator_category; typedef void value_type; typedef void difference_type;