mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
Userland: Disambiguate dependent types
Clang produced an error on these pieces of code without the `typename` keyword.
This commit is contained in:
parent
f820917a76
commit
f28f00c654
3 changed files with 4 additions and 4 deletions
|
@ -55,8 +55,8 @@ void init(TSelf* self, TJob job)
|
|||
template<typename TBadgedProtocol, typename TPipeResult>
|
||||
OwnPtr<Request> start_request(TBadgedProtocol&& protocol, ClientConnection& client, const String& method, const URL& url, const HashMap<String, String>& headers, ReadonlyBytes body, TPipeResult&& pipe_result)
|
||||
{
|
||||
using TJob = TBadgedProtocol::Type::JobType;
|
||||
using TRequest = TBadgedProtocol::Type::RequestType;
|
||||
using TJob = typename TBadgedProtocol::Type::JobType;
|
||||
using TRequest = typename TBadgedProtocol::Type::RequestType;
|
||||
|
||||
if (pipe_result.is_error()) {
|
||||
return {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue