Scott Kostyshak 6adae69810 Script for finding unneeded headers
The script does the following:

  All .cpp and .h files in the current directory and subdirectories
  are checked to see which include statements could be omitted without
  causing a build error.

Many of these omissions would not be desired. For example, currently
if you don't include Undo.h in Undo.cpp, there is no error because
Undo.h is included in Cursor.h which is included in Undo.cpp. But
clearly we do want to include Undo.h in Undo.cpp.

See #6305.
2013-05-02 02:40:48 -04:00
..
2007-11-27 20:21:47 +00:00
2012-11-03 22:11:05 -04:00
2008-06-12 16:48:23 +00:00
2011-06-01 13:10:38 +00:00

Some scripts I found useful when working on LyX