[PATCH] D33651: Add note for location of other convenience functions.

Frederich Munch via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 30 10:57:27 PDT 2017


marsupial updated this revision to Diff 100736.
marsupial retitled this revision from "[ADT] Add convenience functions for making forward and reverse ranges with an STL container." to "Add note for location of other convenience functions.".

https://reviews.llvm.org/D33651

Files:
  include/llvm/ADT/iterator_range.h


Index: include/llvm/ADT/iterator_range.h
===================================================================
--- include/llvm/ADT/iterator_range.h
+++ include/llvm/ADT/iterator_range.h
@@ -63,6 +63,9 @@
 iterator_range<decltype(begin(std::declval<T>()))> drop_begin(T &&t, int n) {
   return make_range(std::next(begin(t), n), end(t));
 }
+
+/// Other convenience functions in STLExtras.h.
+
 }
 
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33651.100736.patch
Type: text/x-patch
Size: 405 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170530/b4f5fd47/attachment.bin>


More information about the llvm-commits mailing list