Place this bracket according to the LLVM style.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140784 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2011-09-29 16:01:46 +00:00
parent 2097d702d4
commit 9a7d48ae67

View File

@ -1231,8 +1231,7 @@ void AsmPrinter::EmitLLVMUsedList(const Constant *List) {
typedef std::pair<int, Constant*> Structor;
static bool priority_order(const Structor& lhs, const Structor& rhs)
{
static bool priority_order(const Structor& lhs, const Structor& rhs) {
return lhs.first < rhs.first;
}