From 2cb73ba68571a4f726beb7f9fbca55a5fd5f9335 Mon Sep 17 00:00:00 2001 From: Grzegorz Wawiorko Date: Mon, 24 Feb 2020 11:28:40 +0100 Subject: [PATCH] Fix - Windows build errors (#620) --- test_common/CMakeLists.txt | 2 +- test_common/harness/{mt19937.c => mt19937.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test_common/harness/{mt19937.c => mt19937.cpp} (100%) diff --git a/test_common/CMakeLists.txt b/test_common/CMakeLists.txt index b285d45d..0eee4509 100644 --- a/test_common/CMakeLists.txt +++ b/test_common/CMakeLists.txt @@ -2,7 +2,7 @@ set(HARNESS_COMMON_SOURCES harness/threadTesting.cpp harness/typeWrappers.cpp - harness/mt19937.c + harness/mt19937.cpp harness/conversions.cpp harness/rounding_mode.cpp harness/msvc9.c diff --git a/test_common/harness/mt19937.c b/test_common/harness/mt19937.cpp similarity index 100% rename from test_common/harness/mt19937.c rename to test_common/harness/mt19937.cpp