aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-11 16:01:14 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-18 23:48:33 +0200
commit202e345dfba7ff3a39e4fb560b98889182dcc506 (patch)
tree7f4c29f3f221183c745549b24690b86e9e4ca833 /mesonbuild/compilers
parent2b09af834a2b4d9659dd57734b87af83386511d2 (diff)
downloadmeson-202e345dfba7ff3a39e4fb560b98889182dcc506.zip
meson-202e345dfba7ff3a39e4fb560b98889182dcc506.tar.gz
meson-202e345dfba7ff3a39e4fb560b98889182dcc506.tar.bz2
interpreter: Refactor interpreter.compiler to use ObjectHolder
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index b46c8f6..be4809f 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -15,6 +15,7 @@
# Public symbols for compilers sub-package when using 'from . import compilers'
__all__ = [
'Compiler',
+ 'RunResult',
'all_languages',
'base_options',
@@ -112,6 +113,7 @@ __all__ = [
# Bring symbols from each module into compilers sub-package namespace
from .compilers import (
Compiler,
+ RunResult,
all_languages,
base_options,
clib_langs,