Clang: Use MessageEnvelop instead of QVariant

QVariant has unwanted dependencies so we provided our own simpler solution.
We want to support move only types and calling the copy constructor as you
move the value in and outside. This copying is adding unwanted overhead
too.

Change-Id: I2e27a7924868efe81e8b8ff3415499c9fa22c2bc
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Marco Bubke
2016-02-08 13:23:28 +01:00
parent c3bbf389d9
commit 974070d2c8
80 changed files with 350 additions and 713 deletions

View File

@@ -25,8 +25,6 @@
#include <sqliteglobal.h>
#include <cmbmessages.h>
#include <QCoreApplication>
#include <QLoggingCategory>
@@ -35,7 +33,6 @@
int main(int argc, char *argv[])
{
ClangBackEnd::Messages::registerMessages();
Sqlite::registerTypes();
QCoreApplication application(argc, argv);