view libinterp/template-inst/Array-tc.cc @ 29722:9a8a6a99a0a7

Re-instantiate signature of macro that is part of the API (bug #60608). * Array.cc (NO_INSTANTIATE_ARRAY_SORT_API): No macro that takes a visibility attribute as argument. (NO_INSTANTIATE_ARRAY_SORT): Add macro with previous signature. * Array-jit.cc, Array-tc.cc, Array-idx-vec.cc, Array-voidp.cc: Use new macro name.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 02 Jun 2021 20:05:45 +0200
parents 29a1f8fd8ee6
children 492a37a18b81
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1996-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

// Instantiate Arrays of octave_values.

#if defined (HAVE_CONFIG_H)
#  include "config.h"
#endif

#include "Array.h"
#include "Array.cc"

#include "ov.h"
#include "cdef-class.h"
#include "cdef-object.h"

#include "oct-sort.cc"

// Prevent implicit instantiations on some systems (Windows, others?)
// that can lead to duplicate definitions of static data members.

extern template class Array<Complex>;
extern template class Array<FloatComplex>;
extern template class Array<bool>;
extern template class Array<char>;
extern template class Array<double>;
extern template class Array<float>;
extern template class Array<octave::idx_vector>;
extern template class Array<octave_idx_type>;
extern template class Array<std::string>;

// Visibility attributes are ignored on template instantiation.
// As a work-around, set visibility to default overriding compiler options.
#pragma GCC visibility push(default)
NO_INSTANTIATE_ARRAY_SORT_API (octave_value, OCTINTERP_API);
INSTANTIATE_ARRAY (octave_value, OCTINTERP_API);

NO_INSTANTIATE_ARRAY_SORT_API (octave_value *, OCTINTERP_API);
INSTANTIATE_ARRAY (octave_value *, OCTINTERP_API);

NO_INSTANTIATE_ARRAY_SORT_API (octave::cdef_object, OCTINTERP_API);
INSTANTIATE_ARRAY (octave::cdef_object, OCTINTERP_API);
#pragma GCC visibility pop