forked from OSchip/llvm-project
Attempt to fix the build with XCode 5.0.2 (and probably 5.1.1).
llvm-svn: 226282
This commit is contained in:
parent
d4730ea555
commit
d1f1fa2636
|
@ -78,7 +78,9 @@ ArgumentsAdjuster getInsertArgumentAdjuster(const char *Extra,
|
|||
|
||||
ArgumentsAdjuster combineAdjusters(ArgumentsAdjuster First,
|
||||
ArgumentsAdjuster Second) {
|
||||
return std::bind(Second, std::bind(First, std::placeholders::_1));
|
||||
return [First, Second](const CommandLineArguments &Args) {
|
||||
return Second(First(Args));
|
||||
};
|
||||
}
|
||||
|
||||
} // end namespace tooling
|
||||
|
|
Loading…
Reference in New Issue