https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9cb62498de69b5597e9a9…
commit 9cb62498de69b5597e9a9034939b0072580088b6
Author: Amine Khaldi <amine.khaldi(a)reactos.org>
AuthorDate: Sat Oct 28 14:06:01 2017 +0100
[GLU32] Add TrimRegion destructor when compiling with clang-cl. CORE-11799 (#94)
---
dll/opengl/glu32/src/libnurbs/internals/trimregion.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dll/opengl/glu32/src/libnurbs/internals/trimregion.h
b/dll/opengl/glu32/src/libnurbs/internals/trimregion.h
index ee15d7b988..186f28437a 100644
--- a/dll/opengl/glu32/src/libnurbs/internals/trimregion.h
+++ b/dll/opengl/glu32/src/libnurbs/internals/trimregion.h
@@ -46,6 +46,10 @@ class Backend;
class TrimRegion {
public:
TrimRegion();
+#if defined(__REACTOS__) && defined(__clang__)
+ /* FIXME: Inspect */
+ ~TrimRegion( void ) {}
+#endif
Trimline left;
Trimline right;
Gridline top;