added acknowledgement to Andrei for the conversion class

[SVN r9210]
This commit is contained in:
Jeremy Siek
2001-02-15 15:18:38 +00:00
parent 67224e443c
commit cb93c87f4f

View File

@ -470,6 +470,9 @@ public:
template <typename T, std::size_t sz> struct is_POD<T[sz]>
{ static const bool value = is_POD<T>::value; };
//
// Thanks to Andrei Alexandrescu for the original version of this
// conversion class!
//
// is one type convertable to another?
template <class From, class To>