diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-02 10:31:39 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 10:59:22 -0700 |
commit | d483da46a97216a15588c4413694c73e53ab9659 (patch) | |
tree | 63819c50939763d1570fed010d373cec03d9aad1 /mesonbuild/compilers/objcpp.py | |
parent | cd12a6fc391782fc9101f71e7bef56590358f06c (diff) | |
download | meson-d483da46a97216a15588c4413694c73e53ab9659.zip meson-d483da46a97216a15588c4413694c73e53ab9659.tar.gz meson-d483da46a97216a15588c4413694c73e53ab9659.tar.bz2 |
compilers: Move clike into a mixins directory
The compilers module is rather large and confusing, with spaghetti
dependencies going every which way. I'm planning to start breaking out
the internal representations into a mixins submodule, for things that
shouldn't be required outside of the compilers module itself.
Diffstat (limited to 'mesonbuild/compilers/objcpp.py')
-rw-r--r-- | mesonbuild/compilers/objcpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/objcpp.py b/mesonbuild/compilers/objcpp.py index f89235e..3a232b5 100644 --- a/mesonbuild/compilers/objcpp.py +++ b/mesonbuild/compilers/objcpp.py @@ -17,7 +17,7 @@ import typing from ..mesonlib import EnvironmentException, MachineChoice -from .clike import CLikeCompiler +from .mixins.clike import CLikeCompiler from .compilers import Compiler, ClangCompiler, GnuCompiler class ObjCPPCompiler(CLikeCompiler, Compiler): |