Revision c646bb629fc895b70b237627ac58f12ec98bd252 authored by Lars Bilke on 26 July 2021, 06:55:47 UTC, committed by Lars Bilke on 26 July 2021, 06:55:47 UTC
fix pre-commit checking

See merge request ogs/ogs!3723
2 parent s 4434c70 + ded400f
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