doc: remove usages of C++11

Now it's just the standard library.
This commit is contained in:
fanquake
2023-01-05 19:52:33 +00:00
parent edc3d1b296
commit 672f7ad747
6 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
#define BITCOIN_REVERSE_ITERATOR_H
/**
* Template used for reverse iteration in C++11 range-based for loops.
* Template used for reverse iteration in range-based for loops.
*
* std::vector<int> v = {1, 2, 3, 4, 5};
* for (auto x : reverse_iterate(v))