BitcodeReader: Fix weird whitespace, NFC

llvm-svn: 264822
This commit is contained in:
Duncan P. N. Exon Smith
2016-03-30 04:21:52 +00:00
parent 3ce036b434
commit 7457ecbebe

View File

@@ -78,7 +78,7 @@ public:
}
Value *back() const { return ValuePtrs.back(); }
void pop_back() { ValuePtrs.pop_back(); }
void pop_back() { ValuePtrs.pop_back(); }
bool empty() const { return ValuePtrs.empty(); }
void shrinkTo(unsigned N) {
assert(N <= size() && "Invalid shrinkTo request!");