From ed96baab01f8e2d419788ecf485502f6e5509b7e Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 14 Mar 2024 00:53:32 +0800 Subject: improve test --- tests/projects/c++/modules/partitions_implunit/src/math.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/projects/c++/modules/partitions_implunit/src/math.cpp') diff --git a/tests/projects/c++/modules/partitions_implunit/src/math.cpp b/tests/projects/c++/modules/partitions_implunit/src/math.cpp index 3a10c8203..3651adb2d 100644 --- a/tests/projects/c++/modules/partitions_implunit/src/math.cpp +++ b/tests/projects/c++/modules/partitions_implunit/src/math.cpp @@ -2,14 +2,12 @@ module math; import :details; -double Math::superLog(double z, double b) -{ +double Math::superLog(double z, double b) { // Implementation omitted... return someHelperFunction(z); } -double Math::lerchZeta(double lambda, double alpha, double s) -{ +double Math::lerchZeta(double lambda, double alpha, double s) { // Implementation omitted... return someHelperFunction(s); } -- cgit v1.3.1