blob: a6269860f094b1ad0de7c147034fe98de87f70d7 [file]
// Copyright (c) 2026 The pybind Community.
#include <pybind11/pybind11.h>
namespace standalone_enum_module_ns {
enum SomeEnum {};
} // namespace standalone_enum_module_ns
using namespace standalone_enum_module_ns;
PYBIND11_MODULE(standalone_enum_module, m, pybind11::mod_gil_used()) { // Added in PR #6015
pybind11::enum_<SomeEnum> some_enum_wrapper(m, "SomeEnum");
}