Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
4f5f4419
Commit
4f5f4419
authored
Feb 23, 2021
by
Ralf W. Grosse-Kunstleve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iwyu cleanup (comprehensive only for cast.h and smart_holder*.h files).
parent
62afdc04
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
0 deletions
+16
-0
include/pybind11/detail/init.h
+1
-0
include/pybind11/detail/smart_holder_type_casters.h
+13
-0
include/pybind11/pybind11.h
+1
-0
include/pybind11/smart_holder.h
+1
-0
No files found.
include/pybind11/detail/init.h
View file @
4f5f4419
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
#pragma once
#pragma once
#include "class.h"
#include "class.h"
#include "smart_holder_sfinae_hooks_only.h"
PYBIND11_NAMESPACE_BEGIN
(
PYBIND11_NAMESPACE
)
PYBIND11_NAMESPACE_BEGIN
(
PYBIND11_NAMESPACE
)
PYBIND11_NAMESPACE_BEGIN
(
detail
)
PYBIND11_NAMESPACE_BEGIN
(
detail
)
...
...
include/pybind11/detail/smart_holder_type_casters.h
View file @
4f5f4419
...
@@ -4,9 +4,22 @@
...
@@ -4,9 +4,22 @@
#pragma once
#pragma once
#include "../pytypes.h"
#include "common.h"
#include "descr.h"
#include "internals.h"
#include "smart_holder_poc.h"
#include "smart_holder_poc.h"
#include "smart_holder_sfinae_hooks_only.h"
#include "smart_holder_sfinae_hooks_only.h"
#include "type_caster_base.h"
#include "type_caster_base.h"
#include "typeid.h"
#include <cstddef>
#include <memory>
#include <new>
#include <string>
#include <type_traits>
#include <typeinfo>
#include <utility>
PYBIND11_NAMESPACE_BEGIN
(
PYBIND11_NAMESPACE
)
PYBIND11_NAMESPACE_BEGIN
(
PYBIND11_NAMESPACE
)
...
...
include/pybind11/pybind11.h
View file @
4f5f4419
...
@@ -48,6 +48,7 @@
...
@@ -48,6 +48,7 @@
#include "options.h"
#include "options.h"
#include "detail/class.h"
#include "detail/class.h"
#include "detail/init.h"
#include "detail/init.h"
#include "detail/smart_holder_sfinae_hooks_only.h"
#include <memory>
#include <memory>
#include <vector>
#include <vector>
...
...
include/pybind11/smart_holder.h
View file @
4f5f4419
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
#pragma once
#pragma once
#include "detail/common.h"
#include "detail/smart_holder_type_casters.h"
#include "detail/smart_holder_type_casters.h"
#include "pybind11.h"
#include "pybind11.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment