Revision 707ee1d2e9b3feb7240e4c0ce322c9a7ecddbbb3 authored by wenqing on 06 September 2021, 07:33:28 UTC, committed by wenqing on 06 September 2021, 07:33:28 UTC
Substitute the storage of node pointer in elements by std::array

See merge request ogs/ogs!3768
2 parent s cc01fcf + 7a783ed
Raw File
DynamicSpan.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

namespace BaseLib
{
template <typename T>
struct DynamicSpan
{
    T* data;
    std::size_t size;
};
}  // namespace BaseLib
back to top