diff options
author | Manuel Klimek <klimek@google.com> | 2013-09-04 08:20:47 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-09-04 08:20:47 +0000 |
commit | bab25fdfa53603d447eb7e2853c6a2e8c0c0db67 (patch) | |
tree | ce817cffcf5a30fd6165a7bc513977c7b60fd54c /llvm/lib/Support/Unicode.cpp | |
parent | 5b2000e4d9c930903bb376e2da8f78d53aea0a68 (diff) | |
download | llvm-bab25fdfa53603d447eb7e2853c6a2e8c0c0db67.zip llvm-bab25fdfa53603d447eb7e2853c6a2e8c0c0db67.tar.gz llvm-bab25fdfa53603d447eb7e2853c6a2e8c0c0db67.tar.bz2 |
Fix layout of lambda captures.
Before:
int c = [ &, &a, a]{
[ =, c, &d]{
return b++;
}();
}();
After:
int c = [&, &a, a] {
[=, c, &d] {
return b++;
}();
}();
llvm-svn: 189924
Diffstat (limited to 'llvm/lib/Support/Unicode.cpp')
0 files changed, 0 insertions, 0 deletions