Skip to content

Commit

Permalink
add std namespace for webchuck compilation in chuck.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Mar 19, 2024
1 parent 09754dd commit 7de8627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/chuck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ void ChucK::probeChugins()
// ck files to pre load
std::list<std::string> 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" );
Expand Down

0 comments on commit 7de8627

Please sign in to comment.