Opened 12 years ago
Last modified 12 years ago
#4651 new Bugs
storage.hpp & borland
Reported by: | Owned by: | Gunter | |
---|---|---|---|
Milestone: | To Be Determined | Component: | uBLAS |
Version: | Boost 1.44.0 | Severity: | Problem |
Keywords: | Cc: |
Description
storage.hpp & borland when using lu.hpp Hello! I've found two incompatibilities when use boost-1.44.0 lu.hpp and Boland C++ Builder 2009 (Update 4). Borland compiler messages are below. [BCC32 Error] storage.hpp(1061): E2102 Cannot use template 'basic_range<Z,D>' without specifying specialization parameters [BCC32 Error] storage.hpp(1076): E2034 Cannot convert 'int' to 'range' It works after 2 replaces: storage.hpp(1061) -return basic_range (NULL, size); +return basic_range<Z,D> (NULL, size); storage.hpp(1076) -const basic_range<Z,D> basic_range<Z,D>::all_ (0, size_type (-1)); +const basic_range<Z,D> basic_range<Z,D>::all_ (basic_range<Z,D>(),size_type(-1)); (0, size_type (-1));