forked from soutade/libgourou
Exception: fix constructor
This commit is contained in:
@@ -165,8 +165,8 @@ namespace gourou
|
|||||||
Exception(const Exception& other)
|
Exception(const Exception& other)
|
||||||
{
|
{
|
||||||
this->code = other.code;
|
this->code = other.code;
|
||||||
this->line = line;
|
this->line = other.line;
|
||||||
this->file = file;
|
this->file = other.file;
|
||||||
this->fullmessage = strdup(other.fullmessage);
|
this->fullmessage = strdup(other.fullmessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user