From 5c5fc8946d7e4a12125c4a9b494adc08fb4d99b3 Mon Sep 17 00:00:00 2001 From: Martin Zink Date: Sun, 29 Dec 2024 21:00:36 +0100 Subject: [PATCH] MINIFICPP-2504 MergeContent should be single threaded Closes #1911 Signed-off-by: Marton Szasz --- extensions/libarchive/MergeContent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/libarchive/MergeContent.h b/extensions/libarchive/MergeContent.h index a0248eec2b..4995732b83 100644 --- a/extensions/libarchive/MergeContent.h +++ b/extensions/libarchive/MergeContent.h @@ -370,7 +370,7 @@ class MergeContent : public processors::BinFiles { EXTENSIONAPI static constexpr bool SupportsDynamicProperties = false; EXTENSIONAPI static constexpr bool SupportsDynamicRelationships = false; EXTENSIONAPI static constexpr core::annotation::Input InputRequirement = core::annotation::Input::INPUT_REQUIRED; - EXTENSIONAPI static constexpr bool IsSingleThreaded = false; + EXTENSIONAPI static constexpr bool IsSingleThreaded = true; ADD_COMMON_VIRTUAL_FUNCTIONS_FOR_PROCESSORS