From a74fed27a0600a2dac1edd0e06aaec834ba7ebe9 Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Sun, 11 Aug 2019 10:11:26 -0500 Subject: [PATCH] Include compiler support info in README and docs. --- README.md | 4 +++- doc/iterator_facade.qbk | 10 ++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a8abdc3..9c56a67 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # iterator_facade -An updated C++20-friendly version of the iterator_facade part of Boost.Iterator, targeting standardization. +An updated C++20-friendly version of the iterator_facade part of +Boost.Iterator, targeting standardization. This library requires at least +C++14. In short, if you need to write an iterator, iterator_facade turns this: diff --git a/doc/iterator_facade.qbk b/doc/iterator_facade.qbk index 8540399..b03445b 100644 --- a/doc/iterator_facade.qbk +++ b/doc/iterator_facade.qbk @@ -57,6 +57,16 @@ [include tutorial.qbk] [include examples.qbk] +[section Compiler Support] + +_Facade_ is written against the C++14 standard. It is targetting +standardization, and the changes required to make it C++11-compatible were +considered too great. + +_Facade_ should work with any conforming C++14 compiler. + +[endsect] + [xinclude iterator_facade_reference.xml] [include rationale.qbk]