Thread: Task list in VC 2005

  1. #1
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607

    Task list in VC 2005

    Is this broken in 2005? In 2003 the task list populates with comments from the entire solution as you compile. It also shows errors and groups them together which is nice. Hunting for errors in the Output window is a hideous task.

    EDIT:

    Nevermind it appears that the error list has been given a separate window all it's own. However comments such as HACK and others that you may define will only appear for the file you have open in the IDE. In a solution with hundreds of files I don't find this to be very useful in 2005.

    It would also be nice if VS 2005 would tell you the warning number of the warnings it lists. That way if I want to disable it via #pragma I don't have to go looking through the docs to find it. I rarely use #pragma to disable warnings since warnings usually indicate a possible problem or gotcha. However it is nice sometimes to disable common warnings that mean next to nothing such as std::vector<> needs DLL-interface to be used by clients of 'X'. This warning is flagged regardless of whether or not you are actually exporting an instance of a template across a DLL boundary or not.
    Last edited by VirtualAce; 05-13-2008 at 09:08 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 26
    Last Post: 07-05-2010, 10:43 AM
  2. Please Help - Problem with Compilers
    By toonlover in forum C++ Programming
    Replies: 5
    Last Post: 07-23-2005, 10:03 AM
  3. Replies: 3
    Last Post: 03-04-2005, 02:46 PM
  4. Linked list with two class types within template.
    By SilasP in forum C++ Programming
    Replies: 3
    Last Post: 02-09-2002, 06:13 AM
  5. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM