forked from qt-creator/qt-creator
		
	ProjectExplorer: Rename compiler includes from System to BuiltIn
System include are those used with -isystem keyword, built-in includes on the other hand come from compiler and always follow in the end of the include list (after system includes). Change-Id: I95c2fec36d2e5b43f014fe0a88d59c6769edfa1f Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
		| @@ -96,6 +96,7 @@ QString Utils::toString(ProjectExplorer::HeaderPathType type) | ||||
|     CASE_LANGUAGEVERSION(User); | ||||
|     CASE_LANGUAGEVERSION(System); | ||||
|     CASE_LANGUAGEVERSION(Framework); | ||||
|     CASE_LANGUAGEVERSION(BuiltIn); | ||||
|     // no default to get a compiler warning if anything is added | ||||
|     } | ||||
| #undef CASE_LANGUAGEVERSION | ||||
| @@ -472,6 +473,7 @@ static void printIncludeType(QTextStream &out, ProjectExplorer::HeaderPathType t | ||||
|         case HeaderPathType::User: out << "(user include path)"; break; | ||||
|         case HeaderPathType::System: out << "(system include path)"; break; | ||||
|         case HeaderPathType::Framework: out << "(framework path)"; break; | ||||
|         case HeaderPathType::BuiltIn: out << "(built-in include path)"; break; | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user