Applied patch broke MSVC 7.1 and 8.0

[SVN r34409]
This commit is contained in:
Ronald Garcia
2006-06-26 16:40:21 +00:00
parent 1d0a63035d
commit 24bc73dfae

View File

@@ -31,6 +31,10 @@ namespace multi_array {
template <typename Index,typename SizeType>
class index_range {
public:
typedef Index index;
typedef SizeType size_type;
private:
static index from_start()
{ return (std::numeric_limits<index>::min)(); }
@@ -39,8 +43,6 @@ namespace multi_array {
{ return (std::numeric_limits<index>::max)(); }
public:
typedef Index index;
typedef SizeType size_type;
index_range()
{