Skip to content

Commit 5b83bc9

Browse files
committed
Merge branch 'main' into develop
2 parents 70c6c3f + c1e807f commit 5b83bc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/stdsharp/utility/to_lvalue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ namespace stdsharp
1414
return t;
1515
}
1616

17-
template<::std::move_constructible T>
17+
template<std::move_constructible T>
1818
[[nodiscard]] constexpr T operator()(T&& t) const noexcept
1919
{
2020
return cpp_move(t);
2121
}
2222
} to_lvalue{};
2323

2424
template<typename T>
25-
using to_lvalue_t = ::std::invoke_result_t<to_lvalue_fn, T>;
25+
using to_lvalue_t = std::invoke_result_t<to_lvalue_fn, T>;
2626
}
2727

2828
#include "../compilation_config_out.h"

0 commit comments

Comments
 (0)