Skip to content
  1. Aug 31, 2010
  2. Aug 30, 2010
  3. Aug 29, 2010
    • Alexis Hunt's avatar
      Implement C++0x user-defined string literals. · 79eb5469
      Alexis Hunt authored
      The extra data stored on user-defined literal Tokens is stored in extra
      allocated memory, which is managed by the PreprocessorLexer because there isn't
      a better place to put it that makes sure it gets deallocated, but only after
      it's used up. My testing has shown no significant slowdown as a result, but
      independent testing would be appreciated.
      
      llvm-svn: 112458
      79eb5469
    • Douglas Gregor's avatar
      When providing a code completion for an Objective-C message send, drop · 981a0c46
      Douglas Gregor authored
      the parameter names from the completions, e.g., provide
      
        withString:(NSString *)
      
      instead of
      
        withString:(NSString *)string
      
      since the parameter name is, by convention, redundant with the
      selector piece that precedes it and the completions can get
      unnecessarily long.
      
      llvm-svn: 112456
      981a0c46
Loading