From 00d9d403ea80036af5b190b35af3a250d217ff47 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 17 Jun 2022 01:58:26 -0600 Subject: [PATCH] testqbsp: fix wrong winding constructor being chosen --- qbsp/test_qbsp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/test_qbsp.cc b/qbsp/test_qbsp.cc index f142ddb3..17e2ce8c 100644 --- a/qbsp/test_qbsp.cc +++ b/qbsp/test_qbsp.cc @@ -450,7 +450,7 @@ TEST_CASE("InvalidTextureProjection3", "[qbsp]") TEST_CASE("WindingArea", "[mathlib]") { - winding_t w{5}; + winding_t w(5); // poor test.. but at least checks that the colinear point is treated correctly w[0] = {0, 0, 0};