From fdc7b4ee8cec6f9164f0a42f1d2c5c0b44f2025f Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Fri, 9 May 2025 18:27:47 +0200 Subject: (C++ modules support) fix hello_mpp test for compiler without header --- tests/projects/c++/modules/hello_mpp/src/main.mpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/projects/c++/modules/hello_mpp/src/main.mpp b/tests/projects/c++/modules/hello_mpp/src/main.mpp index 3746aa4a4..87122ad50 100644 --- a/tests/projects/c++/modules/hello_mpp/src/main.mpp +++ b/tests/projects/c++/modules/hello_mpp/src/main.mpp @@ -1,6 +1,6 @@ -#include +#include int main() { - std::print("Hello world\n"); + std::printf("Hello world\n"); return 0; } -- cgit v1.3.1