Commit f5f69cb3 authored by Davis King's avatar Davis King

Fixed a minor bug in unordered_pair

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404043
parent 007f8d6f
...@@ -47,7 +47,7 @@ namespace dlib ...@@ -47,7 +47,7 @@ namespace dlib
const T first; const T first;
const T second; const T second;
unordered_pair() : first(T()), second(T()) unordered_pair() : first(), second()
/*! /*!
ensures ensures
- #first and #second are default initialized - #first and #second are default initialized
...@@ -75,6 +75,19 @@ namespace dlib ...@@ -75,6 +75,19 @@ namespace dlib
ensures ensures
- #*this is a copy of p - #*this is a copy of p
!*/ {} !*/ {}
unordered_pair& operator= (
const unordered_pair& item
)
/*!
ensures
- #*this == item
!*/
{
const_cast<T&>(first) = item.first;
const_cast<T&>(second) = item.second;
return *this;
}
}; };
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment