remove the gcc version specific paths from C++ Includes
configuration as they are not needed
in 4.9.9.0 they are:
include\c++\3.3.1
include\c++\3.3.1\mingw32
include\c++\3.3.1\backward
lib\gcc-lib\mingw32\3.3.1\include
the mingw is these days able to find them automatically
Logged In: YES
user_id=609236
the problem with that would be that devcpp would have to
somehow get those paths anyway, to know where are located
the include paths that sources include, in order to parse
those header files and make use of code completion, tool tip
etc,
Logged In: YES
user_id=828749
I don't see this as a problem. The first 3 paths are subdirs
of include dir, so Dev-C++ can simply recursively parse the
include path and its subfolders.
The last path can be found as a gcc-lib subdir of lib directory.
OK, you can left those paths there for the withmingw version
but for the nomingw they shouldn't be there.
Logged In: YES
user_id=609236
fixed in cvs
Logged In: YES
user_id=609236
reopening for now. those paths are needed by parser.
Logged In: YES
user_id=609236
the paths will not be removed for now because they're being
used by parser. nothing else really needs them