Revision c10dea16f607dd961fd51593f203e3f83d709b25 authored by renchao_lu on 25 July 2021, 10:46:16 UTC, committed by renchao_lu on 02 August 2021, 13:43:52 UTC
1 parent 5a832ce
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