diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-09 18:52:19 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-09 18:52:19 +0100 |
commit | 690c05e6c25174613feebfe70d49c53874fb1b10 (patch) | |
tree | 32c906e9338c34addf299a9b529f13dc8eb310f2 | |
parent | f012ba643627e4fa4a82a69fc35a3b595b13d68e (diff) |
thekla_atlas: Fix compilation error
Bug introduced in 65fb961b8b2c81ce33c9e0e4c0add7b13da0193a.
-rw-r--r-- | thirdparty/thekla_atlas/nvmesh/param/Atlas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/thekla_atlas/nvmesh/param/Atlas.h b/thirdparty/thekla_atlas/nvmesh/param/Atlas.h index 0398bd905c..41cfaea9cb 100644 --- a/thirdparty/thekla_atlas/nvmesh/param/Atlas.h +++ b/thirdparty/thekla_atlas/nvmesh/param/Atlas.h @@ -64,7 +64,7 @@ namespace nv // Pack charts in the smallest possible rectangle. float packCharts(int quality, float texelArea, bool blockAlign, bool conservative); - bool setFailed() { failed = true; } + void setFailed() { failed = true; } bool hasFailed() const { return failed; } private: |