mirror of https://github.com/CGAL/cgal
33 lines
663 B
C++
33 lines
663 B
C++
// Copyright (c) 2024 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Stéphane Tayeb, Pierre Alliez, Camille Wormser
|
|
//
|
|
|
|
#ifndef CGAL_REMOVE_OPTIONAL_H_
|
|
#define CGAL_REMOVE_OPTIONAL_H_
|
|
|
|
#include <CGAL/license/AABB_tree.h>
|
|
|
|
#include <optional>
|
|
|
|
namespace CGAL {
|
|
namespace internal {
|
|
|
|
template <class T>
|
|
struct Remove_optional { typedef T type; };
|
|
|
|
template <class T>
|
|
struct Remove_optional< ::std::optional<T> > { typedef T type; };
|
|
|
|
} // end namespace internal
|
|
} // end namespace CGAL
|
|
|
|
#endif |