refactor(3p/nix): Apply clang-tidy's modernize-* fixes

This applies the modernization fixes listed here:

https://clang.llvm.org/extra/clang-tidy/checks/list.html

The 'modernize-use-trailing-return-type' fix was excluded due to my
personal preference (more specifically, I think the 'auto' keyword is
misleading in that position).
This commit is contained in:
Vincent Ambo 2020-05-20 04:33:07 +01:00
parent fed31b2c9b
commit d331d3a0b5
59 changed files with 349 additions and 321 deletions

View file

@ -1,3 +1,5 @@
#include <utility>
#include "binary-cache-store.hh"
#include "globals.hh"
#include "nar-info-disk-cache.hh"
@ -9,8 +11,8 @@ class LocalBinaryCacheStore : public BinaryCacheStore {
Path binaryCacheDir;
public:
LocalBinaryCacheStore(const Params& params, const Path& binaryCacheDir)
: BinaryCacheStore(params), binaryCacheDir(binaryCacheDir) {}
LocalBinaryCacheStore(const Params& params, Path binaryCacheDir)
: BinaryCacheStore(params), binaryCacheDir(std::move(binaryCacheDir)) {}
void init() override;
@ -78,7 +80,7 @@ static RegisterStoreImplementation regStore(
const Store::Params& params) -> std::shared_ptr<Store> {
if (getEnv("_NIX_FORCE_HTTP_BINARY_CACHE_STORE") == "1" ||
std::string(uri, 0, 7) != "file://") {
return 0;
return nullptr;
}
auto store =
std::make_shared<LocalBinaryCacheStore>(params, std::string(uri, 7));