Skip to content
  1. Nov 03, 2009
  2. Oct 10, 2009
    • Anders Carlsson's avatar
      Add CheckCallReturnType and start using it for regular call expressions. This... · 7f84ed92
      Anders Carlsson authored
      Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For 
      
      struct B;
      
      B f();
      
      void g() {
      f();
      }
      
      We now get
      
      t.cpp:6:3: error: calling 'f' with incomplete return type 'struct B'
        f();
        ^~~
      t.cpp:3:3: note: 'f' declared here
      B f();
        ^
      t.cpp:1:8: note: forward declaration of 'struct B'
      struct B;
             ^
      
      llvm-svn: 83692
      7f84ed92
  3. Oct 08, 2009
  4. Sep 26, 2009
  5. Sep 11, 2009
  6. Jul 11, 2009
  7. Jun 27, 2009
  8. Jun 26, 2009
  9. Jun 24, 2009
  10. Jun 13, 2009
Loading