diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-16 16:28:40 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-17 13:17:17 (GMT) |
commit | 095496e02610c66d34cf3ee0fc329abed2be47e3 (patch) | |
tree | c61ac150253dc9db1404ed98f001ab07b91f6b44 /src/corelib/tools/qhash.h | |
parent | dd745238e17dbdc52417e11a70e74cf6f8e15d04 (diff) | |
download | Qt-095496e02610c66d34cf3ee0fc329abed2be47e3.zip Qt-095496e02610c66d34cf3ee0fc329abed2be47e3.tar.gz Qt-095496e02610c66d34cf3ee0fc329abed2be47e3.tar.bz2 |
Change all ptrdiff_t to qptrdiff.
Reviewed-By: Bradley T. Hughes
Diffstat (limited to 'src/corelib/tools/qhash.h')
-rw-r--r-- | src/corelib/tools/qhash.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/tools/qhash.h b/src/corelib/tools/qhash.h index 5e93523..05eae42 100644 --- a/src/corelib/tools/qhash.h +++ b/src/corelib/tools/qhash.h @@ -329,7 +329,7 @@ public: public: typedef std::bidirectional_iterator_tag iterator_category; - typedef ptrdiff_t difference_type; + typedef qptrdiff difference_type; typedef T value_type; typedef T *pointer; typedef T &reference; @@ -394,7 +394,7 @@ public: public: typedef std::bidirectional_iterator_tag iterator_category; - typedef ptrdiff_t difference_type; + typedef qptrdiff difference_type; typedef T value_type; typedef const T *pointer; typedef const T &reference; @@ -478,7 +478,7 @@ public: // STL compatibility typedef T mapped_type; typedef Key key_type; - typedef ptrdiff_t difference_type; + typedef qptrdiff difference_type; typedef int size_type; inline bool empty() const { return isEmpty(); } |