chore(3p/nix): Add missing override to UDSRemoteStore::sameMachine

This silences a -Winconsistent-missing-override

Change-Id: I2492a8ab3c0b0a33a794f012bfee6bbd0c2f0a8e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1271
Reviewed-by: Kane York <rikingcoding@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-07-18 15:19:46 -04:00 committed by glittershark
parent cbea59c5f6
commit 3f4e5050cd

View file

@ -143,7 +143,7 @@ class UDSRemoteStore : public LocalFSStore, public RemoteStore {
std::string getUri() override;
bool sameMachine() { return true; }
bool sameMachine() override { return true; }
private:
ref<RemoteStore::Connection> openConnection() override;