Qualified ptrdiff_t with std:: (fixes a failure on CW 9.4)

[SVN r31790]
This commit is contained in:
Peter Dimov
2005-11-27 17:16:30 +00:00
parent 3771707bb7
commit 2d25f8f036

View File

@ -41,7 +41,7 @@ public:
typedef T const & const_reference;
typedef T value_type;
typedef std::size_t size_type;
typedef ptrdiff_t difference_type;
typedef std::ptrdiff_t difference_type;
private: