find . -name '*.h' -o -name '*.cpp' -o -name '*.py' | xargs -n 1 -- sed -i 's/PYBIND11_HAVE_/PYBIND11_HAS_/g' (#5286)

This commit is contained in:
Ralf W. Grosse-Kunstleve
2024-08-04 23:16:44 +07:00
committed by GitHub
parent 48f25275c4
commit 7c6fe49106
49 changed files with 116 additions and 116 deletions

View File

@@ -7,7 +7,7 @@ import pytest
from pybind11_tests import class_sh_basic as m
if not m.defined_PYBIND11_HAVE_INTERNALS_WITH_SMART_HOLDER_SUPPORT:
if not m.defined_PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT:
pytest.skip("smart_holder not available.", allow_module_level=True)