Advertisement
Guest User

Untitled

a guest
Feb 15th, 2015
1,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. builtin/describe.c:91:23: error: incomplete definition of type 'struct tag'
  2. if (e->tag->date < t->date)
  3. ~^
  4.  
  5. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  6. struct tag *tag;
  7. ^
  8. builtin/describe.c:215:10: warning: incompatible integer to pointer conversion assigning to 'struct tag *'
  9. from 'int' [-Wint-conversion]
  10. n->tag = lookup_tag(n->sha1);
  11. ^ ~~~~~~~~~~~~~~~~~~~
  12. builtin/describe.c:220:14: error: incomplete definition of type 'struct tag'
  13. if (!n->tag->tag)
  14. ~~~~~~^
  15. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  16. struct tag *tag;
  17. ^
  18. builtin/describe.c:222:20: error: incomplete definition of type 'struct tag'
  19. if (strcmp(n->tag->tag, all ? n->path + 5 : n->path))
  20. ~~~~~~^
  21. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  22. struct tag *tag;
  23. ^
  24. builtin/describe.c:223:53: error: incomplete definition of type 'struct tag'
  25. warning(_("tag '%s' is really '%s' here"), n->tag->tag, n->path);
  26. ~~~~~~^
  27. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  28. struct tag *tag;
  29. ^
  30. builtin/describe.c:228:22: error: incomplete definition of type 'struct tag'
  31. printf("%s", n->tag->tag);
  32. ~~~~~~^
  33.  
  34. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  35. struct tag *tag;
  36. ^
  37. builtin/describe.c:262:34: error: incomplete definition of type 'struct tag'
  38. show_suffix(0, n->tag ? n->tag->tagged->sha1 : sha1);
  39. ~~~~~~^
  40. builtin/describe.c:43:9: note: forward declaration of 'struct tag'
  41. struct tag *tag;
  42. ^
  43. 5 warnings and 7 errors generated.
  44. gmake: *** [builtin/describe.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement