Thread: Plugin ?

  1. #1
    Morpheus
    Guest

    Post Plugin ?

    I was wondering if there is any demand for a plugin for VC++ or Borland C++ 4.5 that would detect infinite loops during the compile process and create an error if there was.

  2. #2
    S Sang-drax's Avatar
    Join Date
    May 2002
    Location
    Göteborg, Sweden
    Posts
    2,072
    Sometimes infinite loops are intended.
    Code:
     
    while (true)
    {
      ...
      if (cond)
        return a;
    }
    Or perhaps that doesn't count as an infinite loop.

    Anyway, I don't think such a plugin would be very useful.
    Last edited by Sang-drax : Tomorrow at 02:21 AM. Reason: Time travelling

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Plugin System Architecture
    By appleGuy in forum C++ Programming
    Replies: 0
    Last Post: 06-08-2009, 01:09 PM
  2. added start menu crashes game
    By avgprogamerjoe in forum Game Programming
    Replies: 6
    Last Post: 08-29-2007, 01:30 PM
  3. Plugin doesn't load on some systems
    By C+/- in forum C++ Programming
    Replies: 0
    Last Post: 06-16-2007, 08:46 AM
  4. trying to figure out someone's code for a plugin
    By paulpars in forum C++ Programming
    Replies: 4
    Last Post: 07-20-2006, 10:57 AM
  5. DLL Plugin system
    By aker_y3k in forum C++ Programming
    Replies: 6
    Last Post: 11-21-2002, 07:53 PM