summaryrefslogtreecommitdiff
path: root/src/libs/sqlite/utf8stringvector.h
Commit message (Collapse)AuthorAgeFilesLines
* ClangSupport: Break artificial dependency to SqliteMarco Bubke2022-01-201-105/+0
| | | | | | | | | | Since the Sqlite library is not used anymore in clang there was only an dependency to the Utf8String in ClangSupport. As we move Utf8String and Utf8StringVector to ClangSupport we can break the dependency to Sqlite. Change-Id: I0012906345bc49a48a7262c1d6e204fb8aff01e1 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Sqlite: Fix compileMarco Bubke2017-06-141-0/+2
| | | | | Change-Id: I098ba3f2a896f3f1f675a81b48cd41364aeaa631 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Clang: Cleanup IPC codeMarco Bubke2017-06-141-1/+28
| | | | | | Change-Id: I29571801b4093337e2c7cc1eec51cfcd07b3bdc5 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
* Add QDataStream operator<< and >> for Utf8StringVectorThiago Macieira2016-11-171-0/+6
| | | | | | | It's just a QVector, but let's be explicit. Change-Id: Ic46ff326a6ba46bc877cfffd148325c9c1354fa5 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
* Wholesale conversion to #pragma oncehjk2016-03-301-4/+1
| | | | | | | Kudos to cgmb and https://github.com/cgmb/guardonce Change-Id: Ifa8970734b8d43fd08c9260c645bdb0228633791 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Update License according to agreement with Free Qt FoundationTobias Hunger2016-01-191-17/+12
| | | | | | | * Update remaining files in src Change-Id: I1896f17fcf34f71c3310c87899fb5171b8e4afb1 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Clang: Reorder includesMarco Bubke2015-06-161-2/+1
| | | | | Change-Id: I324e88c0d295114390c1fac2745c0d2d47637ece Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
* Introduce codemodelbackend process and libraryMarco Bubke2015-06-031-0/+79
This is a partial result of wip/clang-oop. More will follow. This allows us to invoke the completion out of the Qt Creator process and thus safes us as against libclang crashes. At this point only the completion use case is supported. Some notes on the individual components: src/libs/codemodelbackendipc * library encapsulating the inter process communication handling * used by the backend application and in a follow-up change by the creator integration src/libs/3rdparty/sqlite * version 3.8.10.2 * dependency of codemodelbackendipc, will be used to storage indexing data, among others src/tools/codemodelbackend * the backend application tests/unit: * unit tests Change-Id: I91a48e27467581a22fb760a18d8eb926008fea60 Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>