aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-06-09 16:31:26 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-06-09 19:04:46 +0200
commit2ddab7a6faab58d8e911012e8a827a3a51504621 (patch)
tree66549df4df914b935c7ff0d870168011ba1d2eb6 /lib
parent370d9b3e46332d38df8798cda208c534c58be808 (diff)
downloadlibquotient-2ddab7a6faab58d8e911012e8a827a3a51504621.tar.gz
libquotient-2ddab7a6faab58d8e911012e8a827a3a51504621.zip
Comments refresh
[skip ci]
Diffstat (limited to 'lib')
-rw-r--r--lib/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.h b/lib/util.h
index 902b4bfc..81add1ac 100644
--- a/lib/util.h
+++ b/lib/util.h
@@ -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;