1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Place this bracket according to the LLVM style.

llvm-svn: 140784
This commit is contained in:
Duncan Sands 2011-09-29 16:01:46 +00:00
parent e429b56306
commit fbf3eb2e3e

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;
}