Improved compile times

Added A LOT of comments
This commit is contained in:
Pasha Bibko
2025-04-20 19:32:25 +01:00
parent 680a3d1323
commit 6ba9f8e596
15 changed files with 286 additions and 149 deletions

View File

@@ -6,7 +6,7 @@
// Foward declarations of STD classes to minimise includes //
namespace std
{
template<typename T1 = char>
template<typename T1>
struct char_traits;
template<typename T1, typename T2>
@@ -24,6 +24,7 @@ namespace std
namespace LX
{
// Error type with index and character to alert the user that LX does not understand that symbol //
struct InvalidCharInSource
{
std::streamsize index;