Fix tmpfile_other.cc

Error: explicitly-defaulted constructor cannot have default arguments

This broke chromium, and needs fixing before we can restart the autorollers.

Change-Id: I4b04dd127b5fb7cf84e5782e07bcf68b2befc904
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/48041
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:27:44 +00:00 committed by Commit Bot service account
parent 316dcd4166
commit a2596bb696
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
namespace tint {
namespace utils {
TmpFile::TmpFile(std::string) = default;
TmpFile::TmpFile(std::string) {}
TmpFile::~TmpFile() = default;