Revert change

This commit is contained in:
Bart
2026-06-08 13:12:11 -04:00
parent 4bbdf178a4
commit 9de9117b05

View File

@@ -42,8 +42,9 @@ public:
{
}
Status(ErrorCodeI e, std::string s) : type_(Type::ErrorCodeI), code_(e), messages_{std::move(s)}
Status(ErrorCodeI e, std::string s) : type_(Type::ErrorCodeI), code_(e)
{
messages_.push_back(std::move(s));
}
/* Returns a representation of the integer status Code as a string.