Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 408e9ae

Browse files
committed
Add ".cxx" to the list of known C++ extensions.
1 parent 46a69b9 commit 408e9ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/distutils/msvccompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class MSVCCompiler (CCompiler) :
177177

178178
# Private class data (need to distinguish C from C++ source for compiler)
179179
_c_extensions = ['.c']
180-
_cpp_extensions = ['.cc','.cpp']
180+
_cpp_extensions = ['.cc', '.cpp', '.cxx']
181181

182182
# Needed for the filename generation methods provided by the
183183
# base class, CCompiler.

0 commit comments

Comments
 (0)