diff options
Diffstat (limited to 'src/qdoc/cppcodeparser.cpp')
-rw-r--r-- | src/qdoc/cppcodeparser.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/qdoc/cppcodeparser.cpp b/src/qdoc/cppcodeparser.cpp index 2f5288ba8..a5e498f07 100644 --- a/src/qdoc/cppcodeparser.cpp +++ b/src/qdoc/cppcodeparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2016 The Qt Company Ltd. +** Copyright (C) 2019 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the tools applications of the Qt Toolkit. @@ -30,16 +30,18 @@ cppcodeparser.cpp */ -#include <qfile.h> -#include <stdio.h> -#include <errno.h> -#include "config.h" #include "cppcodeparser.h" + +#include "config.h" #include "qdocdatabase.h" -#include <qdebug.h> #include "generator.h" +#include <QtCore/qdebug.h> +#include <QtCore/qfile.h> + #include <algorithm> +#include <errno.h> +#include <stdio.h> QT_BEGIN_NAMESPACE |