mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 17:56:03 +08:00
exception what() method shall be noexcept.
This commit is contained in:
parent
67ce4d862b
commit
de2c6a2a3d
@ -998,7 +998,7 @@ protected:
|
|||||||
class UnknownOptionException : public std::exception
|
class UnknownOptionException : public std::exception
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
const char* what() const _NOEXCEPT override { return "Unknown config option"; }
|
const char* what() const noexcept override { return "Unknown config option"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user