mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:30:02 +00:00
exception: Make constructors explicit
Ensures that exception construction is always explicit.
This commit is contained in:
parent
e490ddf327
commit
c27ddb44de
1 changed files with 4 additions and 4 deletions
|
@ -36,21 +36,21 @@ private:
|
||||||
class LogicError : public Exception {
|
class LogicError : public Exception {
|
||||||
public:
|
public:
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
LogicError(const char* message, Args&&... args)
|
explicit LogicError(const char* message, Args&&... args)
|
||||||
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
||||||
};
|
};
|
||||||
|
|
||||||
class RuntimeError : public Exception {
|
class RuntimeError : public Exception {
|
||||||
public:
|
public:
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
RuntimeError(const char* message, Args&&... args)
|
explicit RuntimeError(const char* message, Args&&... args)
|
||||||
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
||||||
};
|
};
|
||||||
|
|
||||||
class NotImplementedException : public Exception {
|
class NotImplementedException : public Exception {
|
||||||
public:
|
public:
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
NotImplementedException(const char* message, Args&&... args)
|
explicit NotImplementedException(const char* message, Args&&... args)
|
||||||
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {
|
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {
|
||||||
Append(" is not implemented");
|
Append(" is not implemented");
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ public:
|
||||||
class InvalidArgument : public Exception {
|
class InvalidArgument : public Exception {
|
||||||
public:
|
public:
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
InvalidArgument(const char* message, Args&&... args)
|
explicit InvalidArgument(const char* message, Args&&... args)
|
||||||
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
: Exception{fmt::format(fmt::runtime(message), std::forward<Args>(args)...)} {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue