Skip to content

Commit

Permalink
typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rfranke committed Oct 22, 2015
1 parent f543309 commit 3c5fbea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/cpp/Include/Core/DataExchange/Writer.h
Expand Up @@ -99,7 +99,7 @@ struct WriteOutputVar
@param val pointer to output variable
@param negate if output variable is a negate alias variable
*/
const double operator()(const T* val, const bool negate)
const double operator()(const T* val, bool negate)
{
//if output variable is a negate alias variable, then negate output value
if(negate)
Expand All @@ -119,7 +119,7 @@ struct WriteOutputVarBool
@param val pointer to output variable
@param negate if output variable is a negate alias variable
*/
const double operator()(const bool* val, const bool negate)
const double operator()(const bool* val, bool negate)
{
//if output variable is a negate alias variable, then negate output value
if (negate)
Expand Down

0 comments on commit 3c5fbea

Please sign in to comment.