From 15ab1720c3e1b7e2c0c1ee39ca82026a5b4a01d9 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Fri, 23 Jun 2017 17:17:47 +0000 Subject: Fix a misleading indentation warning. llvm-svn: 306130 --- llvm/lib/Support/CachePruning.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/Support/CachePruning.cpp') diff --git a/llvm/lib/Support/CachePruning.cpp b/llvm/lib/Support/CachePruning.cpp index 57342288e7d..60d0964f276 100644 --- a/llvm/lib/Support/CachePruning.cpp +++ b/llvm/lib/Support/CachePruning.cpp @@ -79,9 +79,9 @@ llvm::parseCachePruningPolicy(StringRef PolicyStr) { return DurationOrErr.takeError(); Policy.Expiration = *DurationOrErr; } else if (Key == "cache_size") { - if (Value.back() != '%') - return make_error("'" + Value + "' must be a percentage", - inconvertibleErrorCode()); + if (Value.back() != '%') + return make_error("'" + Value + "' must be a percentage", + inconvertibleErrorCode()); StringRef SizeStr = Value.drop_back(); uint64_t Size; if (SizeStr.getAsInteger(0, Size)) -- cgit v1.2.3