From 41af43092ccc8030bb49cea324d85eecd5ae68a8 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Fri, 11 Nov 2016 04:28:40 +0000 Subject: Make the Error class constructor protected This is forcing to use Error::success(), which is in a wide majority of cases a lot more readable. Differential Revision: https://reviews.llvm.org/D26481 llvm-svn: 286561 --- llvm/tools/llvm-size/llvm-size.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/tools/llvm-size') diff --git a/llvm/tools/llvm-size/llvm-size.cpp b/llvm/tools/llvm-size/llvm-size.cpp index 1e4c436157c..a11532a7c98 100644 --- a/llvm/tools/llvm-size/llvm-size.cpp +++ b/llvm/tools/llvm-size/llvm-size.cpp @@ -542,7 +542,7 @@ static void printFileSectionSizes(StringRef file) { if (Archive *a = dyn_cast(&Bin)) { // This is an archive. Iterate over each member and display its sizes. - Error Err; + Error Err = Error::success(); for (auto &C : a->children(Err)) { Expected> ChildOrErr = C.getAsBinary(); if (!ChildOrErr) { @@ -611,7 +611,7 @@ static void printFileSectionSizes(StringRef file) { std::unique_ptr &UA = *AOrErr; // This is an archive. Iterate over each member and display its // sizes. - Error Err; + Error Err = Error::success(); for (auto &C : UA->children(Err)) { Expected> ChildOrErr = C.getAsBinary(); if (!ChildOrErr) { @@ -700,7 +700,7 @@ static void printFileSectionSizes(StringRef file) { std::unique_ptr &UA = *AOrErr; // This is an archive. Iterate over each member and display its // sizes. - Error Err; + Error Err = Error::success(); for (auto &C : UA->children(Err)) { Expected> ChildOrErr = C.getAsBinary(); if (!ChildOrErr) { @@ -775,7 +775,7 @@ static void printFileSectionSizes(StringRef file) { I->getAsArchive()) { std::unique_ptr &UA = *AOrErr; // This is an archive. Iterate over each member and display its sizes. - Error Err; + Error Err = Error::success(); for (auto &C : UA->children(Err)) { Expected> ChildOrErr = C.getAsBinary(); if (!ChildOrErr) { -- cgit v1.2.3