Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. I am having all the time this issue after running my app
  2. #import "Foo.h"
  3.        
  4. @class Foo;
  5. @protocol FooDelegate;
  6.        
  7. #import "Foo.h"
  8.        
  9. int _x = 1;
  10. int _x = 2;
  11.        
  12. extern int _x;
  13.        
  14. int _x;
  15.        
  16. int foo(int a);
  17.        
  18. int foo(int a)
  19. {
  20.     return a + 10;
  21. }