Revision 65058cd63b43ad5fc130c06576f8eee36c709950 authored by Dmitri Naumov on 17 June 2021, 12:59:21 UTC, committed by Dmitri Naumov on 27 August 2021, 13:47:41 UTC
Seems to be a compiler/c++lib "bug".
1 parent b88682c
Raw File
IndexValueVector.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
 *
 */

#pragma once

#include <vector>

namespace NumLib
{
template <typename IndexType>
struct IndexValueVector final
{
    std::vector<IndexType> ids;
    std::vector<double> values;
};

}  // namespace NumLib
back to top