Add ".cxx" to the list of known C++ extensions.

This commit is contained in:
Greg Ward 2000-08-30 17:32:24 +00:00
parent 46a69b9c7f
commit 408e9ae299
1 changed files with 1 additions and 1 deletions

View File

@ -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.