Upgraded to the latest winlibs/gcc 14.
This commit is contained in:
parent
5a6494acf5
commit
290affa49a
11 changed files with 20 additions and 13 deletions
|
@ -20,12 +20,12 @@
|
|||
#include <exception>
|
||||
|
||||
using namespace nlohmann;
|
||||
using namespace fmt;
|
||||
using namespace ftxui;
|
||||
using namespace std::chrono_literals;
|
||||
using lighting::LightSource, lighting::LightRender;
|
||||
namespace fs = std::filesystem;
|
||||
using std::string, std::wstring, std::vector;
|
||||
using fmt::println, fmt::print, fmt::format;
|
||||
|
||||
const Point GRID_SIZE={15,8};
|
||||
const int DEFAULT_FONT_SIZE=200;
|
||||
|
@ -54,7 +54,7 @@ struct FontGrid {
|
|||
}
|
||||
|
||||
void configure_font() {
|
||||
dbc::check(fs::exists($font_list), format("font listing {} does not exist", $font_list));
|
||||
dbc::check(fs::exists($font_list), std::format("font listing {} does not exist", $font_list));
|
||||
|
||||
std::ifstream in_file($font_list);
|
||||
json input = json::parse(in_file);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue