ClazyChen / ds-lab

A series of experiments of subject Data Structure for kaoyan-exam students
MIT License
112 stars 13 forks source link

C++23 update: std::print #15

Open ClazyChen opened 1 year ago

ClazyChen commented 1 year ago

Shuffle.cpp的展示中,std::format在VS2022中报错:检测到未知的文件尾。修改为std::vformat之后正常 疑似MSVC错误地将std::format中的format string里的大括号解析为外部大括号(当指定了输出格式之后) 从而造成原本的外部大括号不匹配

ClazyChen commented 1 year ago

等到C++23支持std::print之后准备对所有输出模块进行重写,彻底抛弃std::cout

ClazyChen commented 1 year ago

更新17.5之后仍然没有修复

ClazyChen commented 1 year ago

更新17.7 preview之后修复了std::format问题,等待改为std::print