summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Soegtrop <msoegtrop@michael-soegtrop.de>2017-06-11 16:14:52 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-06-11 16:14:52 +0000
commit74bbf0973bb755dd058867dee6fc59ab3cc88974 (patch)
treed2b3aae6f4b9f3ce0f8fd88124c0cfde5dfc8f19
parentMerge branch 'appveyor' into 'master' (diff)
downloadinkscape-74bbf0973bb755dd058867dee6fc59ab3cc88974.tar.gz
inkscape-74bbf0973bb755dd058867dee6fc59ab3cc88974.zip
Lpe bool fix
-rw-r--r--src/live_effects/lpe-bool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-bool.h b/src/live_effects/lpe-bool.h
index 1c0aa0243..ce46f14d1 100644
--- a/src/live_effects/lpe-bool.h
+++ b/src/live_effects/lpe-bool.h
@@ -42,7 +42,7 @@ public:
inline friend bool_op to_bool_op(bool_op_ex val)
{
assert(val <= bool_op_ex_slice);
- (bool_op) val;
+ return (bool_op) val;
}
private: