diff --git a/src/commands/CmdCalc.cpp b/src/commands/CmdCalc.cpp index 0315c1216..2c8ffe43a 100644 --- a/src/commands/CmdCalc.cpp +++ b/src/commands/CmdCalc.cpp @@ -54,7 +54,7 @@ CmdCalc::CmdCalc () int CmdCalc::execute (std::string& output) { // Configurable infix/postfix - auto infix {true}; + bool infix {true}; if (context.config.get ("expressions") == "postfix") infix = false;