forked from qt-creator/qt-creator
Clang: Tests on MSVC2013: Fix file name clashes
The following files conflicted: src\tools\clangbackend\ipcsource\translationunit.cpp src\libs\3rdparty\cplusplus\TranslationUnit.cpp src\libs\3rdparty\cplusplus\Type.cpp src\tools\clangbackend\ipcsource\type.cpp src\libs\3rdparty\cplusplus\Symbol.cpp src\plugins\clangcodemodel\symbol.cpp Change-Id: If7865570cd70e39e25cc8d508f771c8023288f0c Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
This commit is contained in:
@@ -33,6 +33,7 @@ SOURCES += \
|
|||||||
clangmodelmanagersupport.cpp \
|
clangmodelmanagersupport.cpp \
|
||||||
clangprojectsettings.cpp \
|
clangprojectsettings.cpp \
|
||||||
clangprojectsettingspropertiespage.cpp \
|
clangprojectsettingspropertiespage.cpp \
|
||||||
|
clangsymbol.cpp \
|
||||||
clangtextmark.cpp \
|
clangtextmark.cpp \
|
||||||
clangutils.cpp \
|
clangutils.cpp \
|
||||||
completionchunkstotextconverter.cpp \
|
completionchunkstotextconverter.cpp \
|
||||||
@@ -46,7 +47,6 @@ SOURCES += \
|
|||||||
semanticmarker.cpp \
|
semanticmarker.cpp \
|
||||||
sourcelocation.cpp \
|
sourcelocation.cpp \
|
||||||
sourcemarker.cpp \
|
sourcemarker.cpp \
|
||||||
symbol.cpp \
|
|
||||||
unit.cpp \
|
unit.cpp \
|
||||||
unsavedfiledata.cpp \
|
unsavedfiledata.cpp \
|
||||||
utils.cpp \
|
utils.cpp \
|
||||||
@@ -76,6 +76,7 @@ HEADERS += \
|
|||||||
clangmodelmanagersupport.h \
|
clangmodelmanagersupport.h \
|
||||||
clangprojectsettings.h \
|
clangprojectsettings.h \
|
||||||
clangprojectsettingspropertiespage.h \
|
clangprojectsettingspropertiespage.h \
|
||||||
|
clangsymbol.h \
|
||||||
clangtextmark.h \
|
clangtextmark.h \
|
||||||
clangutils.h \
|
clangutils.h \
|
||||||
completionchunkstotextconverter.h \
|
completionchunkstotextconverter.h \
|
||||||
@@ -91,7 +92,6 @@ HEADERS += \
|
|||||||
semanticmarker.h \
|
semanticmarker.h \
|
||||||
sourcelocation.h \
|
sourcelocation.h \
|
||||||
sourcemarker.h \
|
sourcemarker.h \
|
||||||
symbol.h \
|
|
||||||
unit.h \
|
unit.h \
|
||||||
unsavedfiledata.h \
|
unsavedfiledata.h \
|
||||||
utils.h \
|
utils.h \
|
||||||
|
@@ -143,6 +143,8 @@ QtcPlugin {
|
|||||||
"clangprojectsettingspropertiespage.cpp",
|
"clangprojectsettingspropertiespage.cpp",
|
||||||
"clangprojectsettingspropertiespage.h",
|
"clangprojectsettingspropertiespage.h",
|
||||||
"clangprojectsettingspropertiespage.ui",
|
"clangprojectsettingspropertiespage.ui",
|
||||||
|
"clangsymbol.cpp",
|
||||||
|
"clangsymbol.h",
|
||||||
"clangtextmark.cpp",
|
"clangtextmark.cpp",
|
||||||
"clangtextmark.h",
|
"clangtextmark.h",
|
||||||
"clangutils.cpp",
|
"clangutils.cpp",
|
||||||
@@ -169,8 +171,6 @@ QtcPlugin {
|
|||||||
"sourcelocation.h",
|
"sourcelocation.h",
|
||||||
"sourcemarker.cpp",
|
"sourcemarker.cpp",
|
||||||
"sourcemarker.h",
|
"sourcemarker.h",
|
||||||
"symbol.cpp",
|
|
||||||
"symbol.h",
|
|
||||||
"unit.cpp",
|
"unit.cpp",
|
||||||
"unit.h",
|
"unit.h",
|
||||||
"unsavedfiledata.cpp",
|
"unsavedfiledata.cpp",
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "symbol.h"
|
#include "clangsymbol.h"
|
||||||
|
|
||||||
#include <cplusplus/Icons.h>
|
#include <cplusplus/Icons.h>
|
||||||
|
|
@@ -31,7 +31,7 @@
|
|||||||
#ifndef INDEX_H
|
#ifndef INDEX_H
|
||||||
#define INDEX_H
|
#define INDEX_H
|
||||||
|
|
||||||
#include "symbol.h"
|
#include "clangsymbol.h"
|
||||||
|
|
||||||
#include <QtCore/QByteArray>
|
#include <QtCore/QByteArray>
|
||||||
#include <QtCore/QString>
|
#include <QtCore/QString>
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#define INDEXER_H
|
#define INDEXER_H
|
||||||
|
|
||||||
#include "clang_global.h"
|
#include "clang_global.h"
|
||||||
#include "symbol.h"
|
#include "clangsymbol.h"
|
||||||
#include "unit.h"
|
#include "unit.h"
|
||||||
|
|
||||||
#include <cpptools/cppmodelmanager.h>
|
#include <cpptools/cppmodelmanager.h>
|
||||||
|
@@ -3,7 +3,6 @@ INCLUDEPATH += $$PWD
|
|||||||
HEADERS += $$PWD/clangipcserver.h \
|
HEADERS += $$PWD/clangipcserver.h \
|
||||||
$$PWD/codecompleter.h \
|
$$PWD/codecompleter.h \
|
||||||
$$PWD/clangstring.h \
|
$$PWD/clangstring.h \
|
||||||
$$PWD/translationunit.h \
|
|
||||||
$$PWD/translationunitisnullexception.h \
|
$$PWD/translationunitisnullexception.h \
|
||||||
$$PWD/codecompletefailedexception.h \
|
$$PWD/codecompletefailedexception.h \
|
||||||
$$PWD/clangcodecompleteresults.h \
|
$$PWD/clangcodecompleteresults.h \
|
||||||
@@ -27,16 +26,16 @@ HEADERS += $$PWD/clangipcserver.h \
|
|||||||
$$PWD/translationunitalreadyexistsexception.h \
|
$$PWD/translationunitalreadyexistsexception.h \
|
||||||
$$PWD/commandlinearguments.h \
|
$$PWD/commandlinearguments.h \
|
||||||
$$PWD/cursor.h \
|
$$PWD/cursor.h \
|
||||||
$$PWD/type.h \
|
|
||||||
$$PWD/highlightinginformations.h \
|
$$PWD/highlightinginformations.h \
|
||||||
$$PWD/highlightinginformation.h \
|
$$PWD/highlightinginformation.h \
|
||||||
$$PWD/highlightinginformationsiterator.h \
|
$$PWD/highlightinginformationsiterator.h \
|
||||||
$$PWD/skippedsourceranges.h
|
$$PWD/skippedsourceranges.h \
|
||||||
|
$$PWD/clangtranslationunit.h \
|
||||||
|
$$PWD/clangtype.h
|
||||||
|
|
||||||
SOURCES += $$PWD/clangipcserver.cpp \
|
SOURCES += $$PWD/clangipcserver.cpp \
|
||||||
$$PWD/codecompleter.cpp \
|
$$PWD/codecompleter.cpp \
|
||||||
$$PWD/clangstring.cpp \
|
$$PWD/clangstring.cpp \
|
||||||
$$PWD/translationunit.cpp \
|
|
||||||
$$PWD/translationunitisnullexception.cpp \
|
$$PWD/translationunitisnullexception.cpp \
|
||||||
$$PWD/codecompletefailedexception.cpp \
|
$$PWD/codecompletefailedexception.cpp \
|
||||||
$$PWD/clangcodecompleteresults.cpp \
|
$$PWD/clangcodecompleteresults.cpp \
|
||||||
@@ -59,7 +58,8 @@ SOURCES += $$PWD/clangipcserver.cpp \
|
|||||||
$$PWD/translationunitalreadyexistsexception.cpp \
|
$$PWD/translationunitalreadyexistsexception.cpp \
|
||||||
$$PWD/commandlinearguments.cpp \
|
$$PWD/commandlinearguments.cpp \
|
||||||
$$PWD/cursor.cpp \
|
$$PWD/cursor.cpp \
|
||||||
$$PWD/type.cpp \
|
|
||||||
$$PWD/highlightinginformations.cpp \
|
$$PWD/highlightinginformations.cpp \
|
||||||
$$PWD/highlightinginformation.cpp \
|
$$PWD/highlightinginformation.cpp \
|
||||||
$$PWD/skippedsourceranges.cpp
|
$$PWD/skippedsourceranges.cpp \
|
||||||
|
$$PWD/clangtranslationunit.cpp \
|
||||||
|
$$PWD/clangtype.cpp
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#include "projectpart.h"
|
#include "projectpart.h"
|
||||||
#include "projects.h"
|
#include "projects.h"
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
#include "translationunits.h"
|
#include "translationunits.h"
|
||||||
#include "unsavedfiles.h"
|
#include "unsavedfiles.h"
|
||||||
|
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
|
|
||||||
#include "cursor.h"
|
#include "cursor.h"
|
||||||
#include "clangstring.h"
|
#include "clangstring.h"
|
@@ -28,7 +28,7 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "type.h"
|
#include "clangtype.h"
|
||||||
|
|
||||||
#include "clangstring.h"
|
#include "clangstring.h"
|
||||||
#include "cursor.h"
|
#include "cursor.h"
|
@@ -34,7 +34,7 @@
|
|||||||
#include "clangstring.h"
|
#include "clangstring.h"
|
||||||
#include "codecompletefailedexception.h"
|
#include "codecompletefailedexception.h"
|
||||||
#include "codecompletionsextractor.h"
|
#include "codecompletionsextractor.h"
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
|
|
||||||
#include <clang-c/Index.h>
|
#include <clang-c/Index.h>
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#ifndef CLANGBACKEND_CODECOMPLETER_H
|
#ifndef CLANGBACKEND_CODECOMPLETER_H
|
||||||
#define CLANGBACKEND_CODECOMPLETER_H
|
#define CLANGBACKEND_CODECOMPLETER_H
|
||||||
|
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
|
|
||||||
#include <codecompletion.h>
|
#include <codecompletion.h>
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#ifndef CLANGBACKEND_CURSOR_H
|
#ifndef CLANGBACKEND_CURSOR_H
|
||||||
#define CLANGBACKEND_CURSOR_H
|
#define CLANGBACKEND_CURSOR_H
|
||||||
|
|
||||||
#include "type.h"
|
#include "clangtype.h"
|
||||||
|
|
||||||
#include <clang-c/Index.h>
|
#include <clang-c/Index.h>
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#include "sourcelocation.h"
|
#include "sourcelocation.h"
|
||||||
|
|
||||||
#include "clangstring.h"
|
#include "clangstring.h"
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
|
|
||||||
#include <utf8string.h>
|
#include <utf8string.h>
|
||||||
|
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#define CLANGBACKEND_TRANSLATIONUNITS_H
|
#define CLANGBACKEND_TRANSLATIONUNITS_H
|
||||||
|
|
||||||
#include "clangfilesystemwatcher.h"
|
#include "clangfilesystemwatcher.h"
|
||||||
#include "translationunit.h"
|
#include "clangtranslationunit.h"
|
||||||
|
|
||||||
#include <filecontainer.h>
|
#include <filecontainer.h>
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#include <clangcodecompleteresults.h>
|
#include <clangcodecompleteresults.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
#include <utf8string.h>
|
#include <utf8string.h>
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
#include <filecontainer.h>
|
#include <filecontainer.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
#include <utf8stringvector.h>
|
#include <utf8stringvector.h>
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#include <filecontainer.h>
|
#include <filecontainer.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
#include <utf8stringvector.h>
|
#include <utf8stringvector.h>
|
||||||
|
@@ -34,7 +34,7 @@
|
|||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <sourcelocation.h>
|
#include <sourcelocation.h>
|
||||||
#include <sourcerange.h>
|
#include <sourcerange.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
#include <sourcelocation.h>
|
#include <sourcelocation.h>
|
||||||
#include <sourcelocationcontainer.h>
|
#include <sourcelocationcontainer.h>
|
||||||
#include <sourcerangecontainer.h>
|
#include <sourcerangecontainer.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
#include <diagnosticset.h>
|
#include <diagnosticset.h>
|
||||||
#include <fixitcontainer.h>
|
#include <fixitcontainer.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#include <diagnosticset.h>
|
#include <diagnosticset.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
#include <sourcelocation.h>
|
#include <sourcelocation.h>
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
#include <sourcerange.h>
|
#include <sourcerange.h>
|
||||||
#include <highlightinginformation.h>
|
#include <highlightinginformation.h>
|
||||||
#include <highlightinginformations.h>
|
#include <highlightinginformations.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
#include <skippedsourceranges.h>
|
#include <skippedsourceranges.h>
|
||||||
#include <sourcelocation.h>
|
#include <sourcelocation.h>
|
||||||
#include <sourcerange.h>
|
#include <sourcerange.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#include <diagnosticset.h>
|
#include <diagnosticset.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
#include <sourcelocation.h>
|
#include <sourcelocation.h>
|
||||||
|
@@ -31,7 +31,7 @@
|
|||||||
#include <diagnostic.h>
|
#include <diagnostic.h>
|
||||||
#include <diagnosticset.h>
|
#include <diagnosticset.h>
|
||||||
#include <projectpart.h>
|
#include <projectpart.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
#include <translationunitdoesnotexistexception.h>
|
#include <translationunitdoesnotexistexception.h>
|
||||||
#include <translationunitalreadyexistsexception.h>
|
#include <translationunitalreadyexistsexception.h>
|
||||||
#include <translationunitfilenotexitexception.h>
|
#include <translationunitfilenotexitexception.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunitisnullexception.h>
|
#include <translationunitisnullexception.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
#include <unsavedfiles.h>
|
#include <unsavedfiles.h>
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
#include <projects.h>
|
#include <projects.h>
|
||||||
#include <translationunitdoesnotexistexception.h>
|
#include <translationunitdoesnotexistexception.h>
|
||||||
#include <translationunitfilenotexitexception.h>
|
#include <translationunitfilenotexitexception.h>
|
||||||
#include <translationunit.h>
|
#include <clangtranslationunit.h>
|
||||||
#include <translationunitisnullexception.h>
|
#include <translationunitisnullexception.h>
|
||||||
#include <translationunitparseerrorexception.h>
|
#include <translationunitparseerrorexception.h>
|
||||||
#include <translationunits.h>
|
#include <translationunits.h>
|
||||||
|
Reference in New Issue
Block a user