Skip to content
  • Tom Stellard's avatar
    Merging r299574: · 555e77c8
    Tom Stellard authored
    ------------------------------------------------------------------------
    r299574 | nico | 2017-04-05 14:10:42 -0400 (Wed, 05 Apr 2017) | 17 lines
    
    clang-format: Support formatting utf-8 character literals in C++11+ mode.
    
    clang-format <<END
    auto c1 = u8'a';
    auto c2 = u'a';
    END
    
    Before:
      auto c1 = u8 'a';
      auto c2 = u'a';
    
    Now:
      auto c1 = u8'a';
      auto c2 = u'a';
    
    Patch from Denis Gladkikh <llvm@denis.gladkikh.email>!
    
    ------------------------------------------------------------------------
    
    git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_40@301463 91177308-0d34-0410-b5e6-96231b3b80d8
    555e77c8