Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Three/include/CGAL/Three/Viewer_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ class QOpenGLFramebufferObject;
class TextRenderer;
class TextListItem;

#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wsfinae-incomplete"
#endif

//! \file Viewer_interface.h
#include <CGAL/Three/Viewer_config.h> // for VIEWER_EXPORT
namespace CGAL{
Expand Down Expand Up @@ -293,4 +298,8 @@ public Q_SLOTS:
}; // end class Viewer_interface
}
}
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif

#endif // VIEWER_INTERFACE_H
Loading