We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70c6c3f + c1e807f commit 5b83bc9Copy full SHA for 5b83bc9
include/stdsharp/utility/to_lvalue.h
@@ -14,15 +14,15 @@ namespace stdsharp
14
return t;
15
}
16
17
- template<::std::move_constructible T>
+ template<std::move_constructible T>
18
[[nodiscard]] constexpr T operator()(T&& t) const noexcept
19
{
20
return cpp_move(t);
21
22
} to_lvalue{};
23
24
template<typename T>
25
- using to_lvalue_t = ::std::invoke_result_t<to_lvalue_fn, T>;
+ using to_lvalue_t = std::invoke_result_t<to_lvalue_fn, T>;
26
27
28
#include "../compilation_config_out.h"
0 commit comments