diff options
| author | Michael Soegtrop <msoegtrop@michael-soegtrop.de> | 2017-06-11 16:14:52 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-06-11 16:14:52 +0000 |
| commit | 74bbf0973bb755dd058867dee6fc59ab3cc88974 (patch) | |
| tree | d2b3aae6f4b9f3ce0f8fd88124c0cfde5dfc8f19 /src | |
| parent | Merge branch 'appveyor' into 'master' (diff) | |
| download | inkscape-74bbf0973bb755dd058867dee6fc59ab3cc88974.tar.gz inkscape-74bbf0973bb755dd058867dee6fc59ab3cc88974.zip | |
Lpe bool fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-bool.h | 2 |
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: |
