Commit 4ba9c513 authored by Kenton Varda's avatar Kenton Varda

Merge pull request #199 from abyss7/fix-overrides

Add missing keywords "override".
parents b0599220 facc5a51
......@@ -590,7 +590,7 @@ public:
AnyPointer::Pipeline(kj::refcounted<BrokenPipeline>(exception)));
}
const void* getBrand() {
const void* getBrand() override {
return nullptr;
}
......@@ -615,7 +615,7 @@ public:
return VoidPromiseAndPipeline { kj::cp(exception), kj::refcounted<BrokenPipeline>(exception) };
}
kj::Maybe<ClientHook&> getResolved() {
kj::Maybe<ClientHook&> getResolved() override {
return nullptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment