Remove TODO note to self.

For the record: I removed the overload because it was causing an ambiguity that I was too lazy to work out at the time. It turned out this was because wchar_t was defined as unsigned short - using BOOST_NO_INTRINSIC_WCHAR_T was the right way to deal with this so the overload no longer needs to be disabled.


[SVN r33114]
This commit is contained in:
Daniel James
2006-02-26 15:58:37 +00:00
parent 6b0b4bb486
commit 7d6f6fe0b4

View File

@@ -331,10 +331,7 @@ namespace boost
BOOST_HASH_SPECIALIZE(wchar_t) BOOST_HASH_SPECIALIZE(wchar_t)
#endif #endif
BOOST_HASH_SPECIALIZE(short) BOOST_HASH_SPECIALIZE(short)
//TODO: Why did I disable this overload??
//#if !(defined(BOOST_MSVC) && BOOST_MSVC < 1300)
BOOST_HASH_SPECIALIZE(unsigned short) BOOST_HASH_SPECIALIZE(unsigned short)
//#endif
BOOST_HASH_SPECIALIZE(int) BOOST_HASH_SPECIALIZE(int)
BOOST_HASH_SPECIALIZE(unsigned int) BOOST_HASH_SPECIALIZE(unsigned int)
BOOST_HASH_SPECIALIZE(long) BOOST_HASH_SPECIALIZE(long)