Opened 10 years ago
Closed 10 years ago
#8350 closed Bugs (fixed)
Missing concept_check.hpp include at closed_interval.hpp
Reported by: | Owned by: | Joachim Faulhaber | |
---|---|---|---|
Milestone: | To Be Determined | Component: | ICL |
Version: | Boost 1.53.0 | Severity: | Problem |
Keywords: | Cc: |
Description
boost/icl/closed_interval.hpp uses Boost Concept Check Library but does not include it resulting in compile errors:
//#include <boost/concept_check.hpp> // <-- missing #include <boost/icl/closed_interval.hpp> int main() { boost::icl::closed_interval<unsigned> interval; }
Note:
See TracTickets
for help on using tickets.
(In [83661]) Fixed ticket 8350 reported by Evgeny Panasyuk on 2013/03/29: closed_interval.hpp misses include of concept_check.hpp.