mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 06:25:01 +00:00
Added missing LLVM_NOEXCEPT to the definition of _obj2yaml_error_category::name
LLVM_NOEXCEPT was added in r210591. llvm-svn: 217603
This commit is contained in:
parent
50897a4c50
commit
60befa06fc
@ -20,7 +20,9 @@ public:
|
||||
};
|
||||
} // namespace
|
||||
|
||||
const char *_obj2yaml_error_category::name() const { return "obj2yaml"; }
|
||||
const char *_obj2yaml_error_category::name() const LLVM_NOEXCEPT {
|
||||
return "obj2yaml";
|
||||
}
|
||||
|
||||
std::string _obj2yaml_error_category::message(int ev) const {
|
||||
switch (static_cast<obj2yaml_error>(ev)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user