There is no std::errc::success, remove the llvm one.
authorRafael Espindola <rafael.espindola@gmail.com>
Sat, 31 May 2014 03:21:04 +0000 (03:21 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Sat, 31 May 2014 03:21:04 +0000 (03:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209960 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/system_error.h
lib/Object/Error.cpp
lib/ProfileData/InstrProf.cpp
lib/Support/LockFileManager.cpp
lib/Support/Unix/Program.inc
tools/llvm-readobj/Error.cpp
tools/obj2yaml/Error.cpp

index 9854a9ee85b287fee6c2ffd9ac19d75343278ad0..9d300fb99153c326ddc0733170982e219bb074e1 100644 (file)
@@ -483,7 +483,6 @@ template <class Tp> struct is_error_condition_enum : public std::false_type {};
 // for them:
 
 enum class errc {
-  success                             = 0,
   address_family_not_supported        = EAFNOSUPPORT,
   address_in_use                      = EADDRINUSE,
   address_not_available               = EADDRNOTAVAIL,
@@ -810,7 +809,6 @@ inline bool operator!=(const error_condition& _x, const error_condition& _y) {
 //
 //      error_code( ::GetLastError(), system_category() )
 enum class windows_error {
-  success = 0,
   // These names and values are based on Windows WinError.h
   // This is not a complete list. Add to this list if you need to explicitly
   // check for it.
index 8e508696cfb819f102317978c87f51bb7d192e90..6f72849ae2755588da8639e89a4b175dfceb0c1b 100644 (file)
@@ -49,7 +49,7 @@ std::string _object_error_category::message(int ev) const {
 
 error_condition _object_error_category::default_error_condition(int ev) const {
   if (ev == object_error::success)
-    return errc::success;
+    return error_condition();
   return errc::invalid_argument;
 }
 
index de2b13dafd028e44d24899ce145820294d3c2d70..60a8efb2a6ad7ed13fed380fb0de0b7e18cd65de 100644 (file)
@@ -54,7 +54,7 @@ class InstrProfErrorCategoryType : public error_category {
   }
   error_condition default_error_condition(int EV) const override {
     if (EV == instrprof_error::success)
-      return errc::success;
+      return error_condition();
     return errc::invalid_argument;
   }
 };
index 9b4bfbe81981139b2a6f5f1475953ee8451182e4..05e75cff1acb533377dda88b1ccacfa27bb7bb57 100644 (file)
@@ -124,7 +124,7 @@ LockFileManager::LockFileManager(StringRef FileName)
     // Create a link from the lock file name. If this succeeds, we're done.
     error_code EC =
         sys::fs::create_link(UniqueLockFileName.str(), LockFileName.str());
-    if (EC == errc::success)
+    if (!EC)
       return;
 
     if (EC != errc::file_exists) {
index 1225a9c042e514fd28628ccec84ad117361b9ab3..f4c6cdf7e99740b287b5e67d2786b71fce1c7048 100644 (file)
@@ -427,12 +427,12 @@ ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
 
 error_code sys::ChangeStdinToBinary(){
   // Do nothing, as Unix doesn't differentiate between text and binary.
-  return make_error_code(errc::success);
+  return error_code();
 }
 
 error_code sys::ChangeStdoutToBinary(){
   // Do nothing, as Unix doesn't differentiate between text and binary.
-  return make_error_code(errc::success);
+  return error_code();
 }
 
 bool llvm::sys::argumentsFitWithinSystemLimits(ArrayRef<const char*> Args) {
index 83ed6a7dfc000718ca9145ea028d4df2869a664b..75c392e0f9fe01ea984d72c664f297664a257877 100644 (file)
@@ -50,7 +50,7 @@ std::string _readobj_error_category::message(int ev) const {
 
 error_condition _readobj_error_category::default_error_condition(int ev) const {
   if (ev == readobj_error::success)
-    return errc::success;
+    return error_condition();
   return errc::invalid_argument;
 }
 
index 7be468dd563f9deac7798f572c358be62a79e0ab..0003b7bb8d539336bcd3dfb85d5ac8af2052eaea 100644 (file)
@@ -42,7 +42,7 @@ std::string _obj2yaml_error_category::message(int ev) const {
 error_condition
 _obj2yaml_error_category::default_error_condition(int ev) const {
   if (ev == obj2yaml_error::success)
-    return errc::success;
+    return error_condition();
   return errc::invalid_argument;
 }