From 7de86270d38a432bcf76e99a181cd1e741b1f1a0 Mon Sep 17 00:00:00 2001 From: Ge Wang Date: Mon, 18 Mar 2024 19:30:08 -0700 Subject: [PATCH] add std namespace for webchuck compilation in chuck.cpp --- src/core/chuck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/chuck.cpp b/src/core/chuck.cpp index a0a34b52b..3f40957f0 100644 --- a/src/core/chuck.cpp +++ b/src/core/chuck.cpp @@ -830,7 +830,7 @@ void ChucK::probeChugins() // ck files to pre load std::list ck_libs_to_preload; // host verison - ostringstream ostr; ostr << CK_DLL_VERSION_MAJOR << "." << CK_DLL_VERSION_MINOR; + std::ostringstream ostr; ostr << CK_DLL_VERSION_MAJOR << "." << CK_DLL_VERSION_MINOR; // print whether chugins enabled EM_log( CK_LOG_SYSTEM, "chugin system: %s", getParamInt( CHUCK_PARAM_CHUGIN_ENABLE ) ? "ON" : "OFF" );