From 3f4e5050cd046c137ff6d0a1bd046c5494f60471 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sat, 18 Jul 2020 15:19:46 -0400 Subject: 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 Tested-by: BuildkiteCI --- third_party/nix/src/libstore/remote-store.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/nix/src/libstore/remote-store.hh b/third_party/nix/src/libstore/remote-store.hh index 03fbbf000c..927d083354 100644 --- a/third_party/nix/src/libstore/remote-store.hh +++ b/third_party/nix/src/libstore/remote-store.hh @@ -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 openConnection() override; -- cgit 1.4.1