diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-03-02 19:10:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-03-08 13:31:54 (GMT) |
commit | 4658413ff3b9551fac67907f296a586e9f2c15ed (patch) | |
tree | 495ea78acb2a9d7463540f9e711530a0d42f3e72 /qtools/qcache.h | |
parent | 6c06e912338176303d1a1e041a39984ff6fd42be (diff) | |
download | Doxygen-4658413ff3b9551fac67907f296a586e9f2c15ed.zip Doxygen-4658413ff3b9551fac67907f296a586e9f2c15ed.tar.gz Doxygen-4658413ff3b9551fac67907f296a586e9f2c15ed.tar.bz2 |
Enabled stricter compiler warnings and fixed all new warnings
Diffstat (limited to 'qtools/qcache.h')
-rw-r--r-- | qtools/qcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qcache.h b/qtools/qcache.h index 39d4f7a..87f9866 100644 --- a/qtools/qcache.h +++ b/qtools/qcache.h @@ -46,7 +46,7 @@ template<class type> class Q_EXPORT QCache : public QGCache { public: QCache( const QCache<type> &c ) : QGCache(c) {} - QCache( int maxCost=100, int size=17, bool caseSensitive=TRUE ) + QCache( int maxCost=100, uint size=17, bool caseSensitive=TRUE ) : QGCache( maxCost, size, AsciiKey, caseSensitive, TRUE ) {} ~QCache() { clear(); } QCache<type> &operator=( const QCache<type> &c ) |