Skip to content

Commit

Permalink
[qt6] Remove unused QRegExp include in the rectangle geometry class
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jul 13, 2021
1 parent 5df7d30 commit 09ccc6a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/core/geometry/qgsrectangle.cpp
Expand Up @@ -15,14 +15,6 @@
* *
***************************************************************************/

#include <algorithm>
#include <cmath>
#include <limits>
#include <QString>
#include <QTextStream>
#include <QTransform>
#include <QRegExp>

#include "qgsgeometry.h"
#include "qgspointxy.h"
#include "qgsrectangle.h"
Expand All @@ -31,6 +23,14 @@
#include "qgspolygon.h"
#include "qgslinestring.h"

#include <QString>
#include <QTextStream>
#include <QTransform>

#include <algorithm>
#include <cmath>
#include <limits>

QgsRectangle QgsRectangle::fromWkt( const QString &wkt )
{
QgsGeometry geom = QgsGeometry::fromWkt( wkt );
Expand Down

0 comments on commit 09ccc6a

Please sign in to comment.