// Copyright (c) 2014 // INRIA Saclay-Ile de France (France) // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.2/NewKernel_d/include/CGAL/NewKernel_d/Vector/mix.h $ // $Id: mix.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Marc Glisse #ifndef CGAL_KD_MIX_VECTOR_H #define CGAL_KD_MIX_VECTOR_H #include namespace CGAL { template struct Mix_vector : Dynamic_::template Rebind_dimension::Other { template struct Rebind_dimension { typedef Mix_vector Other; }; }; // FIXME: shouldn't we dispatch based on Max_dim_ instead? template struct Mix_vector, Max_dim_> : Static_::template Rebind_dimension, Max_dim_>::Other { template struct Rebind_dimension { typedef Mix_vector Other; }; }; } #endif