awhile ago I tried to compile this simple program:
 
#include<boost/graph/adjacency_list.hpp>
 
int main (){
 
   return 0;
}
 
 
and Borland C++ Builder 6 refuse to compile.
I have track the problem and it seemed that Borland C++ builder has problem with template partial specialization with constant. The program below also refuse to compile
 
template< class T>
class A{
     typedef T type;
 };
 
template <class T>
class A< const T>{
typedef  T consttype;
};
 
int main (){
     return 0;
}
 
does anybody has the workaround with this ? By the way, I use Boost version 1.30.0 ( the latest)


Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software