From 5e15bfb6b7ca8f9fc668073857c84c381ebe459e Mon Sep 17 00:00:00 2001 From: Matt Mascarenhas Date: Wed, 31 Aug 2016 02:28:10 +0100 Subject: [PATCH] Insert the missing closing brace --- test/hmm_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/hmm_test.cpp b/test/hmm_test.cpp index df8d290..1c1533c 100644 --- a/test/hmm_test.cpp +++ b/test/hmm_test.cpp @@ -64,6 +64,7 @@ TEST(ScalarMath, PowerF) EXPECT_FLOAT_EQ(HMM_PowerF(-2.0f, 4.1), -17.148376f); EXPECT_FLOAT_EQ(HMM_PowerF(2.0f, -2.5), 0.176777f); EXPECT_FLOAT_EQ(HMM_PowerF(-2.0f, -2.5), -0.176777f); +} TEST(ScalarMath, Lerp) {