Skip to content
Snippets Groups Projects
Commit 0b4cab68 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fixed missing namespace qualifier

parent 513c186b
No related branches found
No related tags found
No related merge requests found
......@@ -132,13 +132,13 @@ namespace json
template <typename Derived>
void to_json(nlohmann::json& j, const MatrixBase<Derived>& matrix)
{
to_json_base(j, matrix);
json::to_json_base(j, matrix);
}
template <typename Derived>
void from_json(const nlohmann::json& j, MatrixBase<Derived>& matrix)
{
from_json_base(j, matrix);
json::from_json_base(j, matrix);
}
......
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