Skip to content
Snippets Groups Projects
Commit 923d6ea0 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

fix MSVC errors

parent d55dd7b8
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ public: ...@@ -55,7 +55,7 @@ public:
GlobalMatrix& M, GlobalMatrix& K, GlobalMatrix& M, GlobalMatrix& K,
GlobalVector& b) = 0; GlobalVector& b) = 0;
using Index = typename MathLib::MatrixVectorTraits<GlobalMatrix>::Index; using Index = MathLib::MatrixVectorTraits<GlobalMatrix>::Index;
//! Provides known solutions (Dirichlet boundary conditions) vector for //! Provides known solutions (Dirichlet boundary conditions) vector for
//! the ode system at the given time \c t. //! the ode system at the given time \c t.
......
...@@ -225,8 +225,7 @@ void TimeDiscretizedODESystem< ...@@ -225,8 +225,7 @@ void TimeDiscretizedODESystem<
if (known_solutions) if (known_solutions)
{ {
using IndexType = using IndexType = MathLib::MatrixVectorTraits<GlobalMatrix>::Index;
typename MathLib::MatrixVectorTraits<GlobalMatrix>::Index;
std::vector<IndexType> ids; std::vector<IndexType> ids;
std::vector<double> values; std::vector<double> values;
for (auto const& bc : *known_solutions) for (auto const& bc : *known_solutions)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment