diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-02 11:24:44 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 10:59:22 -0700 |
| commit | 214ab455d3a16215ffdca5a4235148f06e7b22fd (patch) | |
| tree | 83b048d9b74ecc1052a0bfd0b704c955549b4e68 /mesonbuild/compilers/cpp.py | |
| parent | 51c66752a9561b1c444dc36cf9edd1fe0431bef8 (diff) | |
| download | meson-214ab455d3a16215ffdca5a4235148f06e7b22fd.tar.gz | |
compilers: Move the VisualStudioLikeCompiler class into mixins
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
| -rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 15edea09b..cf893b9b7 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -32,12 +32,12 @@ from .compilers import ( PGICompiler, ArmclangCompiler, Compiler, - VisualStudioLikeCompiler, ) from .c_function_attributes import CXX_FUNC_ATTRIBUTES, C_FUNC_ATTRIBUTES from .mixins.clike import CLikeCompiler from .mixins.ccrx import CcrxCompiler from .mixins.arm import ArmCompiler +from .mixins.visualstudio import VisualStudioLikeCompiler def non_msvc_eh_options(eh, args): |
