commit fe8705df6f8da855886591150f958e2a7a6c4462
Author: Christian Ehringfeld <c.ehringfeld@t-online.de>
Date:   Tue Oct 6 16:32:30 2015 +0200

    ...

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3a5c941..fa18b65 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,6 @@ before_script:
     - QTDIR="/Applications/Qt/5.4/clang_64"
     # http://doc.gitlab.com/ci/variables/README.html
     #- echo "#define BUILD ""$CI_BUILD_ID" > build_number.h
-    - qmake -project
     - qmake EntityManager.pro -r -spec macx-clang CONFIG+=x86_64
     - make
     - make check
diff --git a/src/entityhelper.h b/src/entityhelper.h
index df074ca..2ff9421 100644
--- a/src/entityhelper.h
+++ b/src/entityhelper.h
@@ -18,7 +18,6 @@
 #include <QString>
 #include <QHash>
 #include <QMetaProperty>
-#include <QPair>
 namespace CuteEntityManager {
 
 class Relation;
diff --git a/src/entityinspector.cpp b/src/entityinspector.cpp
index 9941939..6c7b887 100644
--- a/src/entityinspector.cpp
+++ b/src/entityinspector.cpp
@@ -250,6 +250,7 @@ void EntityInspector::checkRelationMappings(QMetaProperty &property,
                                      QString::number(foundMappedBy) + ") by foreign class " + foreignEntityName +
                                      ". You should map it only once!\n",
                                      MsgType::WARNING);
+                ok = false;
             }
         } else if (!foundForeignMappedRelation) {
             this->logger->logMsg("Relation " + r.getPropertyName() +
diff --git a/src/entityinstancefactory.h b/src/entityinstancefactory.h
index ba1d069..3fea95a 100644
--- a/src/entityinstancefactory.h
+++ b/src/entityinstancefactory.h
@@ -54,10 +54,6 @@ class EntityInstanceFactory {
             QString lName = "QList<QSharedPointer<";
             lName.append(T::staticMetaObject.className());
             lName.append(">>");
-            /**
-             * @brief qRegisterMetaType<QList<QSharedPointer<T> > >
-             * @todo would be great if we could remove this shit
-             */
             qRegisterMetaType<QList<QSharedPointer<T>>>(lName.toLatin1().constData());
         }
     }
diff --git a/src/schema.h b/src/schema.h
index 52c8f90..f391a41 100644
--- a/src/schema.h
+++ b/src/schema.h
@@ -128,7 +128,7 @@ class Schema {
     virtual QString buildDefaultString(QString def) const;
     virtual QString buildCheckString(QString check) const;
     virtual QString lengthToString(int length) const;
-virtual QString combineScaleAndPrecision(int precision, int scale) const;
+    virtual QString combineScaleAndPrecision(int precision, int scale) const;
 
 
     virtual QStringList findTableNames(QString schema = "") = 0;
