Exception: fix constructor

This commit is contained in:
2026-01-19 14:41:32 -05:00
parent 8f0341d0bd
commit 1605656c73

View File

@@ -165,8 +165,8 @@ namespace gourou
Exception(const Exception& other)
{
this->code = other.code;
this->line = line;
this->file = file;
this->line = other.line;
this->file = other.file;
this->fullmessage = strdup(other.fullmessage);
}