diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-06-09 16:31:26 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-06-09 19:04:46 +0200 |
commit | 2ddab7a6faab58d8e911012e8a827a3a51504621 (patch) | |
tree | 66549df4df914b935c7ff0d870168011ba1d2eb6 /lib/util.h | |
parent | 370d9b3e46332d38df8798cda208c534c58be808 (diff) | |
download | libquotient-2ddab7a6faab58d8e911012e8a827a3a51504621.tar.gz libquotient-2ddab7a6faab58d8e911012e8a827a3a51504621.zip |
Comments refresh
[skip ci]
Diffstat (limited to 'lib/util.h')
-rw-r--r-- | lib/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -199,7 +199,7 @@ using fn_arg_t = std::tuple_element_t<ArgN, typename function_traits<FnT>::arg_types>; // TODO: get rid of it as soon as Apple Clang gets proper deduction guides -// for std::function<> +// for std::function<> template <typename FnT> inline auto wrap_in_function(FnT&& f) { @@ -217,7 +217,7 @@ inline auto operator"" _ls(const char* s, std::size_t size) */ template <typename ArrayT> class Range { - // Looking forward for Ranges TS to produce something (in C++23?..) + // Looking forward to C++23 ranges using iterator = typename ArrayT::iterator; using const_iterator = typename ArrayT::const_iterator; using size_type = typename ArrayT::size_type; |