mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Add noexcept shim for MSVC.
This commit is contained in:
@@ -12,8 +12,8 @@ TableKeyNotDefinedException::TableKeyNotDefinedException(llvm::StringRef key)
|
||||
msg += key;
|
||||
}
|
||||
|
||||
const char* TableKeyNotDefinedException::what() const noexcept {
|
||||
const char* TableKeyNotDefinedException::what() const NT_NOEXCEPT {
|
||||
return msg.c_str();
|
||||
}
|
||||
|
||||
TableKeyNotDefinedException::~TableKeyNotDefinedException() noexcept {}
|
||||
TableKeyNotDefinedException::~TableKeyNotDefinedException() NT_NOEXCEPT {}
|
||||
|
||||
Reference in New Issue
Block a user