From 408e9ae299c1e89ef44184a61a3dfd13a357dbb7 Mon Sep 17 00:00:00 2001 From: Greg Ward <gward@python.net> Date: Wed, 30 Aug 2000 17:32:24 +0000 Subject: [PATCH] Add ".cxx" to the list of known C++ extensions. --- Lib/distutils/msvccompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index eecbb620ed..6c3f8dab71 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -177,7 +177,7 @@ class MSVCCompiler (CCompiler) : # Private class data (need to distinguish C from C++ source for compiler) _c_extensions = ['.c'] - _cpp_extensions = ['.cc','.cpp'] + _cpp_extensions = ['.cc', '.cpp', '.cxx'] # Needed for the filename generation methods provided by the # base class, CCompiler. -- 2.40.0