Skip to content
Snippets Groups Projects
Commit 6cefb9c9 authored by pnorbert's avatar pnorbert Committed by GitHub
Browse files

Merge pull request #225 from pnorbert/fix-variable-definitions

update error message for PR #224
parents ad527fdd 9727402d
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ void Engine::Write(Variable<T> &variable, const T *values) ...@@ -29,7 +29,7 @@ void Engine::Write(Variable<T> &variable, const T *values)
{ {
if (m_DebugMode) if (m_DebugMode)
{ {
variable.CheckDimsBeforeWrite("Write(" + variable.m_Name + ")"); variable.CheckDimsBeforeWrite("Write " + variable.m_Name);
} }
DoWrite(variable, values); DoWrite(variable, values);
......
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