Skip to content

Commit

Permalink
LibCore: Fix building with clang
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs authored and awesomekling committed Feb 5, 2020
1 parent 384d640 commit f6a8b1b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Libraries/LibCore/CNetworkJob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ NetworkJob::~NetworkJob()
{
}

void NetworkJob::start()
{
}

void NetworkJob::shutdown()
{
}

void NetworkJob::did_finish(NonnullRefPtr<NetworkResponse>&& response)
{
// NOTE: We protect ourselves here, since the on_finish callback may otherwise
Expand Down

0 comments on commit f6a8b1b

Please sign in to comment.