Thread: What would skip do??

  1. #1
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688

    What would skip do??

    This is an odd question, but I have always wondered what the answer is.

    When I use Visual Studio.net 2003 edition, and compile a program, what does the "Skipped" term mean when the compiler compiles the code?

    Why on earth would it wish to skip anything anyway, it always says none, but I have never seen a use for it, so why did the creators of the compiler add it to the exe list output?

    example:
    Output: Sucsesed 1, failed 0, SKIPPED 0

    Does anyone know what skipped means?

  2. #2
    Registered User
    Join Date
    May 2006
    Posts
    903
    I think it's in the case where you do a complete rebuild a wish to avoid recompiling a certain part of the project solution. It's only a wild guess though.

  3. #3
    Registered User
    Join Date
    Feb 2006
    Posts
    312
    I think its for large-scale development. ie, If your solution contains more than one project, and one or more of the projects fail to build, the compiler may skip some of the other projects. I'm not sure if you can manually choose to skip projects, I guess it might be useful for debugging (if you only need to compile a small part of the solution, and don't want to sit and wait half an hour for some extremely large project to compile)

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Skip line in file - fscanf
    By Noori88 in forum C Programming
    Replies: 2
    Last Post: 05-27-2007, 06:57 AM
  2. using sscanf to skip trailing whitespace
    By y_cant_i_C in forum C Programming
    Replies: 7
    Last Post: 09-25-2006, 06:01 PM
  3. A few questions...
    By Tride in forum C Programming
    Replies: 15
    Last Post: 09-25-2003, 02:26 AM
  4. Skip lists
    By Cela in forum C Programming
    Replies: 2
    Last Post: 01-18-2003, 09:39 AM
  5. Is there a way to skip lines with file input?
    By Shadow12345 in forum C++ Programming
    Replies: 7
    Last Post: 09-29-2002, 12:58 PM