Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix build of qspatialite and ocispatial sql drivers
  • Loading branch information
jef-n committed Nov 15, 2016
1 parent 6c4eeda commit e9c4090
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/providers/oracle/ocispatial/qsqlcachedresult_p.h
Expand Up @@ -65,12 +65,12 @@ class QSqlCachedResultPrivate;
class Q_SQL_EXPORT QSqlCachedResult: public QSqlResult
{
public:
virtual ~QSqlCachedResult();
virtual ~QSqlCachedResult() {}

typedef QVector<QVariant> ValueCache;

protected:
QSqlCachedResult( const QSqlDriver * db );
QSqlCachedResult( const QSqlDriver * db ) : QSqlResult(db) {}

void init( int colCount );
void cleanup();
Expand Down
4 changes: 2 additions & 2 deletions src/providers/spatialite/qspatialite/qsqlcachedresult_p.h
Expand Up @@ -65,12 +65,12 @@ class QSqlCachedResultPrivate;
class Q_SQL_EXPORT QSqlCachedResult: public QSqlResult
{
public:
virtual ~QSqlCachedResult();
virtual ~QSqlCachedResult() {}

typedef QVector<QVariant> ValueCache;

protected:
QSqlCachedResult( const QSqlDriver * db );
QSqlCachedResult( const QSqlDriver * db ) : QSqlResult(db) {}

void init( int colCount );
void cleanup();
Expand Down

0 comments on commit e9c4090

Please sign in to comment.