Tool/software: Code Composer Studio
Using CCS 9.0.1.4 and previous versions I notice that the New | Class wizard generates boiler plate code in the .cpp file like:
#include <blah.h>
which is the include form for system files. It should instead generate code like:
#include "blah.h"
which is the form for local project files. In practice both forms work, at least where there are no clashes with system files of the same name, but that is very likely compiler dependent. For compilers with a more conventional include header search strategy the compile the likely to break.
Is there something subtle involved here that I don't know?