Siv3D / OpenSiv3D

C++20 framework for creative coding 🎮🎨🎹 / Cross-platform support (Windows, macOS, Linux, and the Web)
https://siv3d.github.io/
MIT License
994 stars 136 forks source link

Parse<double>(U""); で例外ではなく assert になる #1226

Closed Reputeless closed 2 months ago

Reputeless commented 4 months ago
# include <Siv3D.hpp>

void Main()
{
    try
    {
        Parse<double>(U"");
    }
    catch (const ParseError& e)
    {
        Print << e;
    }

    while (System::Update())
    {

    }
}