Revision 5e0bec1c9e1a1f9a60d928045b9280f3816e3803 authored by Tobias Meisel on 07 October 2021, 13:35:01 UTC, committed by Tobias Meisel on 07 October 2021, 13:35:01 UTC
[cpm] Update xdmf to fix CMake warnings.

See merge request ogs/ogs!3830
2 parent s 7d226dc + 62167a5
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