view liboctave/array/Array-fwd.h @ 30501:79a7f3e3cf54 stable

Use consistent name for OCTAVE_HAVE_STD_PMR_POLYMORPHIC_ALLOCATOR (bug #61472). * libinterp/corefcn/mex.cc, liboctave/array/Array-fwd.h, liboctave/array/Array.h, m4/acinclude.m4: Use consistent name for new pre-processor variable everywhere. Fix typo. Remove debug messages.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Dec 2021 22:01:14 +0100
parents abb4823df535
children 796f54d4ddbf
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 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/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_Array_fwd_h)
#define octave_Array_fwd_h 1

#include "octave-config.h"

#if defined (OCTAVE_HAVE_STD_PMR_POLYMORPHIC_ALLOCATOR)
#  include <memory_resource>

template <typename T, typename Alloc = std::pmr::polymorphic_allocator<T>>
class OCTARRAY_API Array;

#else

template <typename T, typename Alloc = std::allocator<T>>
class OCTARRAY_API Array;

#endif

#endif