Skip to content

Commit

Permalink
🛠 Minor namespace fix for windows-specific function on Non-VC++
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Nov 20, 2021
1 parent f7d62cc commit 128d97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ztd/idk/encoding_detection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ZTD_IDK_C_LANGUAGE_LINKAGE_I_ ZTD_IDK_API_LINKAGE_I_ bool ztdc_is_execution_enco
#if ZTD_IS_ON(ZTD_LIBVCXX_I_)
return MB_CUR_MAX == 4;
#elif ZTD_IS_ON(ZTD_PLATFORM_WINDOWS_I_)
return __idk_detail::__windows::__determine_active_code_page() == CP_UTF8;
return ::ztd::__idk_detail::__windows::__determine_active_code_page() == CP_UTF8;
#elif ZTD_IS_ON(ZTD_PLATFORM_MAC_OS_I_)
return true;
#else
Expand Down

0 comments on commit 128d97e

Please sign in to comment.