Some flags are valid for C but not C++. Prune them.
(cxxflags)
| 2475 | |
| 2476 | |
| 2477 | def sanitize_cxx_flags(cxxflags): |
| 2478 | ''' |
| 2479 | Some flags are valid for C but not C++. Prune them. |
| 2480 | ''' |
| 2481 | return [flag for flag in cxxflags if flag not in _cxx_ignore_flags] |
| 2482 | |
| 2483 | |
| 2484 | def exec_mod_from_location(modname, modfile): |
no outgoing calls
no test coverage detected