1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:48:12 +00:00

LibCore: Fix building with clang

This commit is contained in:
joshua stein 2020-01-30 17:21:10 -06:00 committed by Andreas Kling
parent 384d640293
commit f6a8b1b69a

View file

@ -40,6 +40,14 @@ NetworkJob::~NetworkJob()
{ {
} }
void NetworkJob::start()
{
}
void NetworkJob::shutdown()
{
}
void NetworkJob::did_finish(NonnullRefPtr<NetworkResponse>&& response) void NetworkJob::did_finish(NonnullRefPtr<NetworkResponse>&& response)
{ {
// NOTE: We protect ourselves here, since the on_finish callback may otherwise // NOTE: We protect ourselves here, since the on_finish callback may otherwise