aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakeproject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeproject.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
index 581a92e9fbf..423fa2dcb3f 100644
--- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
@@ -32,18 +32,20 @@
***************************************************************************/
#include "cmakeproject.h"
+
#include "cmakeprojectconstants.h"
#include "cmakeprojectnodes.h"
+#include "cmakerunconfiguration.h"
#include "cmakestep.h"
#include "makestep.h"
-#include "cmakerunconfiguration.h"
#include <extensionsystem/pluginmanager.h>
#include <cpptools/cppmodelmanagerinterface.h>
+#include <utils/qtcassert.h>
-#include <QProcess>
-#include <QDir>
#include <QtCore/QDebug>
+#include <QtCore/QDir>
+#include <QtCore/QProcess>
using namespace CMakeProjectManager;
using namespace CMakeProjectManager::Internal;
@@ -550,7 +552,7 @@ void CMakeCbpParser::parseUnit()
void CMakeCbpParser::parseUnknownElement()
{
- Q_ASSERT(isStartElement());
+ QTC_ASSERT(isStartElement(), /**/);
while (!atEnd()) {
readNext();