add comments

This commit is contained in:
Sébastien Loriot 2016-02-04 16:19:30 +01:00
parent eb91b04388
commit f5aae4e8cb
2 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,7 @@
#define DT_RGB 128 /* */ #define DT_RGB 128 /* */
#define DT_ALL 255 /* */ #define DT_ALL 255 /* */
#include <string> #include <cstring>
struct header_key /* header_key */ struct header_key /* header_key */
{ /* off + size*/ { /* off + size*/

View File

@ -149,6 +149,9 @@ namespace CGAL {
{ {
public: public:
// Workaround for a bug in g++4.4 in ADL for function next:
// we provide the types needed for std::iterator_traits<Surface_mesh::halfedge_index>,
// although this descriptor is not an iterator.
typedef void iterator_category; typedef void iterator_category;
typedef void value_type; typedef void value_type;
typedef void difference_type; typedef void difference_type;