From a2596bb696a77801f2df6afd0bcdc2e6afe889c4 Mon Sep 17 00:00:00 2001 From: Ben Clayton Date: Fri, 16 Apr 2021 11:27:44 +0000 Subject: [PATCH] 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 Reviewed-by: Corentin Wallez Commit-Queue: Corentin Wallez --- src/utils/tmpfile_other.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/tmpfile_other.cc b/src/utils/tmpfile_other.cc index 8ee60e6e00..eeb57271a8 100644 --- a/src/utils/tmpfile_other.cc +++ b/src/utils/tmpfile_other.cc @@ -17,7 +17,7 @@ namespace tint { namespace utils { -TmpFile::TmpFile(std::string) = default; +TmpFile::TmpFile(std::string) {} TmpFile::~TmpFile() = default;