mirror of https://github.com/CGAL/cgal
Fix Issue #2629
This commit is contained in:
parent
19187fef14
commit
2806377564
|
|
@ -101,6 +101,8 @@ namespace CGAL {
|
|||
}
|
||||
} // namespace CGAL
|
||||
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
|
||||
namespace boost {
|
||||
|
||||
template <typename X>
|
||||
|
|
@ -130,5 +132,8 @@ namespace boost {
|
|||
{
|
||||
typedef T type;
|
||||
};
|
||||
}
|
||||
} // namespace boost
|
||||
|
||||
#endif // DOXYGEN_RUNNING
|
||||
|
||||
#endif // CGAL_ITERATOR_RANGE_H
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
#include <CGAL/license/Surface_mesh.h>
|
||||
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
|
@ -562,6 +563,8 @@ private:
|
|||
|
||||
} // CGAL
|
||||
|
||||
#endif // DOXYGEN_RUNNING
|
||||
|
||||
//=============================================================================
|
||||
#endif // CGAL_SURFACE_MESH_PROPERTY_H
|
||||
//=============================================================================
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
#ifndef CGAL_SURFACE_MESH_H
|
||||
#define CGAL_SURFACE_MESH_H
|
||||
|
||||
|
||||
#include <CGAL/license/Surface_mesh.h>
|
||||
|
||||
|
||||
|
|
@ -2620,9 +2621,14 @@ namespace internal{
|
|||
}
|
||||
|
||||
} // CGAL
|
||||
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
|
||||
namespace std {
|
||||
|
||||
|
||||
struct TTTTTffff {};
|
||||
|
||||
#if defined(BOOST_MSVC)
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable:4099) // For VC10 it is class hash
|
||||
|
|
@ -2688,5 +2694,7 @@ namespace boost {
|
|||
|
||||
} // namespace boost
|
||||
|
||||
#endif // DOXYGEN_RUNNING
|
||||
|
||||
#endif /* CGAL_SURFACE_MESH_H */
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@
|
|||
#ifndef CGAL_BOOST_GRAPH_TRAITS_SURFACE_MESH_H
|
||||
#define CGAL_BOOST_GRAPH_TRAITS_SURFACE_MESH_H
|
||||
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
|
||||
#include <CGAL/license/Surface_mesh.h>
|
||||
|
||||
|
||||
|
|
@ -532,4 +534,6 @@ void normalize_border(const CGAL::Surface_mesh<P>&)
|
|||
|
||||
} // namespace CGAL
|
||||
|
||||
#endif // DOXYGEN_RUNNING
|
||||
|
||||
#endif // CGAL_BOOST_GRAPH_TRAITS_SURFACE_MESH_H
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@
|
|||
#ifndef CGAL_PROPERTIES_SURFACE_MESH_H
|
||||
#define CGAL_PROPERTIES_SURFACE_MESH_H
|
||||
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
|
||||
#include <CGAL/license/Surface_mesh.h>
|
||||
|
||||
|
||||
|
|
@ -385,6 +387,6 @@ remove_property(Pmap pm, CGAL::Surface_mesh<P>& sm)
|
|||
|
||||
} // namespace CGAL
|
||||
|
||||
|
||||
#endif // DOXYGEN_RUNNING
|
||||
|
||||
#endif /* CGAL_PROPERTIES_SURFACE_MESH_H */
|
||||
|
|
|
|||
Loading…
Reference in New Issue