diff options
author | Erkin Bahceci <erkinbah@gmail.com> | 2009-11-05 16:34:12 -0600 |
---|---|---|
committer | Erkin Bahceci <erkinbah@gmail.com> | 2009-11-05 16:34:12 -0600 |
commit | 4c93418dd856edb409ecb7fc6f4b4c1079372229 (patch) | |
tree | fefeefbfb3709d917544451d876a66407fd56c58 /src | |
parent | bc4ac0faa828bf31db1d14523ef7b325008a7e17 (diff) | |
download | zcomp-4c93418dd856edb409ecb7fc6f4b4c1079372229.tar.gz zcomp-4c93418dd856edb409ecb7fc6f4b4c1079372229.tar.bz2 |
Fix return issues.
Diffstat (limited to 'src')
-rw-r--r-- | src/region.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/region.cpp b/src/region.cpp index 9cd4e33..44bee8c 100644 --- a/src/region.cpp +++ b/src/region.cpp @@ -399,7 +399,7 @@ CompRegion::operator^= (const CompRegion &r) const CompRegion CompRegion::operator| (const CompRegion &r) const { - united (r); + return united (r); } CompRegion & |