From 838f86b0fd880b26539664140f04e5d16669dad8 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 24 May 2020 22:29:21 +0100 Subject: style(3p/nix): Remove 'using std::*' from types.hh It is considered bad form to use things from includes in headers, as these directives propagate to everywhere else and can make it confusing. types.hh (which is includes almost literally everywhere) had some of these directives, which this commit removes. --- third_party/nix/src/nix-channel/nix-channel.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'third_party/nix/src/nix-channel') diff --git a/third_party/nix/src/nix-channel/nix-channel.cc b/third_party/nix/src/nix-channel/nix-channel.cc index 1a094f8cdb35..04a492d80a03 100644 --- a/third_party/nix/src/nix-channel/nix-channel.cc +++ b/third_party/nix/src/nix-channel/nix-channel.cc @@ -12,7 +12,7 @@ using namespace nix; -typedef std::map Channels; +typedef std::map Channels; static Channels channels; static Path channelsList; @@ -25,12 +25,12 @@ static void readChannels() { auto channelsFile = readFile(channelsList); for (const auto& line : - tokenizeString>(channelsFile, "\n")) { + tokenizeString>(channelsFile, "\n")) { absl::StripTrailingAsciiWhitespace(line); if (std::regex_search(line, std::regex("^\\s*\\#"))) { continue; } - auto split = tokenizeString>(line, " "); + auto split = tokenizeString>(line, " "); auto url = std::regex_replace(split[0], std::regex("/*$"), ""); auto name = split.size() > 1 ? split[1] : baseNameOf(url); channels[name] = url; @@ -50,7 +50,7 @@ static void writeChannels() { } // Adds a channel. -static void addChannel(const string& url, const string& name) { +static void addChannel(const std::string& url, const std::string& name) { if (!regex_search(url, std::regex("^(file|http|https)://"))) { throw Error(format("invalid channel URL '%1%'") % url); } @@ -65,7 +65,7 @@ static void addChannel(const string& url, const string& name) { static Path profile; // Remove a channel. -static void removeChannel(const string& name) { +static void removeChannel(const std::string& name) { readChannels(); channels.erase(name); writeChannels(); @@ -109,7 +109,7 @@ static void update(const StringSet& channelNames) { std::smatch match; auto urlBase = baseNameOf(url); if (std::regex_search(urlBase, match, std::regex("(-\\d.*)$"))) { - cname = cname + (string)match[1]; + cname = cname + (std::string)match[1]; } std::string extraAttrs; @@ -188,7 +188,7 @@ static int _main(int argc, char** argv) { getUserName()); enum { cNone, cAdd, cRemove, cList, cUpdate, cRollback } cmd = cNone; - std::vector args; + std::vector args; parseCmdLine(argc, argv, [&](Strings::iterator& arg, const Strings::iterator& end) { if (*arg == "--help") { -- cgit 1.4.1