*_other.cc: Remove unused parameters

Change-Id: I966461fdf70a8d23c05f4e5daa5795b7c54e186b
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/48042
Auto-Submit: Ben Clayton <bclayton@google.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Ben Clayton 2021-04-16 11:40:14 +00:00 committed by Commit Bot service account
parent a2596bb696
commit fe70c75bc5
2 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,7 @@ namespace utils {
Command::Command(const std::string&) {} Command::Command(const std::string&) {}
Command Command::LookPath(const std::string& executable) { Command Command::LookPath(const std::string&) {
return Command(""); return Command("");
} }
@ -27,8 +27,7 @@ bool Command::Found() const {
return false; return false;
} }
Command::Output Command::Exec( Command::Output Command::Exec(std::initializer_list<std::string>) const {
std::initializer_list<std::string> arguments) const {
Output out; Output out;
out.err = "Command not supported by this target"; out.err = "Command not supported by this target";
return out; return out;

View File

@ -21,7 +21,7 @@ TmpFile::TmpFile(std::string) {}
TmpFile::~TmpFile() = default; TmpFile::~TmpFile() = default;
bool TmpFile::Append(const void* data, size_t size) const { bool TmpFile::Append(const void*, size_t) const {
return false; return false;
} }