Add better timings, and proper configuration
This commit is contained in:
parent
0b32af33b8
commit
5750bb8177
13 changed files with 385 additions and 240 deletions
11
Libraries/Kanimaji/Source/Error.cpp
Normal file
11
Libraries/Kanimaji/Source/Error.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include "Kanimaji/Error.hpp"
|
||||
|
||||
#include <format>
|
||||
|
||||
namespace Kanimaji
|
||||
{
|
||||
ParseError::ParseError(std::size_t current, std::string_view message)
|
||||
: Error(std::format("[At: {}] {}", current, message))
|
||||
, mPosition(current)
|
||||
{}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue