Raw File
/**
 * \file
 * \author Wenqing Wang
 * \date Oct, 2013
 *
 * \copyright
 * Copyright (c) 2012-2023, 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

namespace MathLib
{
/// General function to finalize the vector assembly
template <typename VEC_T>
void finalizeVectorAssembly(VEC_T& /*unused*/)
{
}

} // MathLib
back to top