From 690c05e6c25174613feebfe70d49c53874fb1b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sat, 9 Dec 2017 18:52:19 +0100 Subject: [PATCH] thekla_atlas: Fix compilation error Bug introduced in 65fb961b8b2c81ce33c9e0e4c0add7b13da0193a. --- thirdparty/thekla_atlas/nvmesh/param/Atlas.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/thekla_atlas/nvmesh/param/Atlas.h b/thirdparty/thekla_atlas/nvmesh/param/Atlas.h index 0398bd905cf..41cfaea9cbe 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: