aboutsummaryrefslogtreecommitdiff
path: root/src/modules/controllib/block/BlockParam.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/controllib/block/BlockParam.hpp')
-rw-r--r--src/modules/controllib/block/BlockParam.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/controllib/block/BlockParam.hpp b/src/modules/controllib/block/BlockParam.hpp
index a64d0139e..437e43bfb 100644
--- a/src/modules/controllib/block/BlockParam.hpp
+++ b/src/modules/controllib/block/BlockParam.hpp
@@ -58,7 +58,7 @@ public:
*
* @param parent_prefix Set to true to include the parent name in the parameter name
*/
- BlockParamBase(Block *parent, const char *name, bool parent_prefix=true);
+ BlockParamBase(Block *parent, const char *name, bool parent_prefix = true);
virtual ~BlockParamBase() {};
virtual void update() = 0;
const char *getName() { return param_name(_handle); }
@@ -75,7 +75,7 @@ class BlockParam : public BlockParamBase
{
public:
BlockParam(Block *block, const char *name,
- bool parent_prefix=true);
+ bool parent_prefix = true);
T get();
void set(T val);
void update();