Subject: [Boost-bugs] [Boost C++ Libraries] #4651: storage.hpp & borland
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2010-09-15 07:00:49
#4651: storage.hpp & borland
--------------------------------------------+-------------------------------
Reporter: Kolan Sh <mecareful@â¦> | Owner: dgregor
Type: Bugs | Status: new
Milestone: To Be Determined | Component: numeric
Version: Boost 1.44.0 | Severity: Problem
Keywords: |
--------------------------------------------+-------------------------------
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));
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/4651> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:04 UTC