summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cuda.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-03-12 11:02:07 -0700
committerDylan Baker <dylan@pnwbakers.com>2025-04-08 10:00:16 -0700
commit390ea4624c2fbfecf831f1c7f34ec796ff410de7 (patch)
tree347a332c2730d923550ad590d271a6af1f0027d3 /mesonbuild/compilers/cuda.py
parent00864ca481c4e29d7f5c648a1e12b934dfa642d2 (diff)
downloadmeson-390ea4624c2fbfecf831f1c7f34ec796ff410de7.tar.gz
coredata: move MutableKeyedOptionDict to options
Diffstat (limited to 'mesonbuild/compilers/cuda.py')
-rw-r--r--mesonbuild/compilers/cuda.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py
index 509044cd4..6cc6f963b 100644
--- a/mesonbuild/compilers/cuda.py
+++ b/mesonbuild/compilers/cuda.py
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2012-2017 The Meson development team
-# Copyright © 2023-2024 Intel Corporation
+# Copyright © 2023-2025 Intel Corporation
from __future__ import annotations
@@ -19,7 +19,7 @@ from .compilers import Compiler, CompileCheckMode
if T.TYPE_CHECKING:
from ..build import BuildTarget
- from ..coredata import MutableKeyedOptionDictType
+ from ..options import MutableKeyedOptionDictType
from ..dependencies import Dependency
from ..environment import Environment # noqa: F401
from ..envconfig import MachineInfo