summaryrefslogtreecommitdiff
path: root/lib/Object
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-18 13:30:31 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-18 13:30:31 +0000
commit79ac9c8402d4113d42ff2d713c7acdfa800d2397 (patch)
tree9e2c7d7c931ddf6241f21074bb67c202a8a3961e /lib/Object
parentbeb920fce6ccc89b4735f280f94cb8c227f4ef5e (diff)
downloadllvm-79ac9c8402d4113d42ff2d713c7acdfa800d2397.tar.gz
llvm-79ac9c8402d4113d42ff2d713c7acdfa800d2397.tar.bz2
llvm-79ac9c8402d4113d42ff2d713c7acdfa800d2397.tar.xz
Don't convert object_error's enum to and from int.
This allows the compiler to see the enum and warn about it. While in here, fix a switch to not use a default and fix style violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object')
-rw-r--r--lib/Object/Error.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Object/Error.cpp b/lib/Object/Error.cpp
index 25946257ab..7005a72d68 100644
--- a/lib/Object/Error.cpp
+++ b/lib/Object/Error.cpp
@@ -31,7 +31,8 @@ const char *_object_error_category::name() const {
}
std::string _object_error_category::message(int ev) const {
- switch (ev) {
+ object_error::Impl E = static_cast<object_error::Impl>(ev);
+ switch (E) {
case object_error::success: return "Success";
case object_error::invalid_file_type:
return "The file was not recognized as a valid object file";
@@ -39,10 +40,9 @@ std::string _object_error_category::message(int ev) const {
return "Invalid data was encountered while parsing the file";
case object_error::unexpected_eof:
return "The end of the file was unexpectedly encountered";
- default:
- llvm_unreachable("An enumerator of object_error does not have a message "
- "defined.");
}
+ llvm_unreachable("An enumerator of object_error does not have a message "
+ "defined.");
}
error_condition _object_error_category::default_error_condition(int ev) const {