From 6d732c66bca5da4d261577aad2c8ea84519b0bea Mon Sep 17 00:00:00 2001 From: Julio Merino Date: Thu, 9 Jan 2014 18:53:21 +0000 Subject: [PATCH] Use .cpp as the extension for temporary C++ files. Using a .c extension for a C++ file raises the following warning, which breaks our header file tests if the compiler is using -Werror as well: c++: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated Obtained from: atf (git 3104010c2849330440cc0ce108ff341913433339) MFC after: 3 days --- contrib/atf/atf-c++/detail/test_helpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/atf/atf-c++/detail/test_helpers.cpp b/contrib/atf/atf-c++/detail/test_helpers.cpp index d13b12467ce5..dc35da96be03 100644 --- a/contrib/atf/atf-c++/detail/test_helpers.cpp +++ b/contrib/atf/atf-c++/detail/test_helpers.cpp @@ -67,14 +67,14 @@ build_check_cxx_o(const atf::tests::tc& tc, const char* sfile, void header_check(const char *hdrname) { - std::ofstream srcfile("test.c"); + std::ofstream srcfile("test.cpp"); ATF_REQUIRE(srcfile); srcfile << "#include <" << hdrname << ">\n"; srcfile.close(); const std::string failmsg = std::string("Header check failed; ") + hdrname + " is not self-contained"; - build_check_cxx_o_aux(atf::fs::path("test.c"), failmsg.c_str(), true); + build_check_cxx_o_aux(atf::fs::path("test.cpp"), failmsg.c_str(), true); } atf::fs::path