Skip to content
  1. Dec 27, 2013
  2. Dec 26, 2013
  3. Dec 25, 2013
  4. Dec 24, 2013
    • Nico Weber's avatar
      Add a FIXME to a failing test. · 428a93b8
      Nico Weber authored
      (See discussion in the bug for why this isn't XFAILed.)
      
      llvm-svn: 197991
      428a93b8
    • Daniel Jasper's avatar
      clang-format: (WebKit) Disallow 1-line constructors with initializers. · 234379fb
      Daniel Jasper authored
      Before:
        Constructor() : a(a) {}
      
      After:
        Constructor()
            : a(a)
        {
        }
      
      This style guide is pretty precise about this.
      
      llvm-svn: 197980
      234379fb
    • Alp Toker's avatar
      Support and use token kinds as diagnostic arguments · ec543279
      Alp Toker authored
      Introduce proper facilities to render token spellings using the diagnostic
      formatter.
      
      Replaces most of the hard-coded diagnostic messages related to expected tokens,
      which all shared the same semantics but had to be multiply defined due to
      variations in token order or quote marks.
      
      The associated parser changes are largely mechanical but they expose
      commonality in whole chunks of the parser that can now be factored away.
      
      This commit uses C++11 typed enums along with a speculative legacy fallback
      until the transition is complete.
      
      Requires corresponding changes in LLVM r197895.
      
      llvm-svn: 197972
      ec543279
  5. Dec 23, 2013
  6. Dec 22, 2013
  7. Dec 21, 2013
Loading