From e8c63dc09326636789916b91630cedf063dc5a54 Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Tue, 30 Jan 2024 13:06:02 +0100 Subject: [PATCH] fix space indent of build.c++.modules.std policy --- xmake/core/project/policy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua index 916ce967732..ebdc3d4dd79 100644 --- a/xmake/core/project/policy.lua +++ b/xmake/core/project/policy.lua @@ -65,7 +65,7 @@ function policy.policies() -- Enable C++ modules for C++ building, even if no .mpp is involved in the compilation ["build.c++.modules"] = {description = "Enable C++ modules for C++ building.", type = "boolean"}, -- Enable std module - ["build.c++.modules.std"] = {description = "Enable std modules.", default = true, type = "boolean"}, + ["build.c++.modules.std"] = {description = "Enable std modules.", default = true, type = "boolean"}, -- Force C++ modules fallback dependency scanner for clang ["build.c++.clang.fallbackscanner"] = {description = "Force clang fallback module dependency scanner.", default = false, type = "boolean"}, -- Force C++ modules fallback dependency scanner for msvc