Upgraded to the latest winlibs/gcc 14.

This commit is contained in:
Zed A. Shaw 2024-12-20 16:53:03 -05:00
parent 5a6494acf5
commit 290affa49a
11 changed files with 20 additions and 13 deletions

View file

@ -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);