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
62afdc04
Commit
62afdc04
authored
Feb 23, 2021
by
Ralf W. Grosse-Kunstleve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding copyright notices and minor colateral cleanup.
parent
c56bd3ac
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
1 deletions
+10
-1
CMakeLists.txt
+1
-0
include/pybind11/detail/smart_holder_sfinae_hooks_only.h
+4
-0
include/pybind11/detail/smart_holder_type_casters.h
+4
-1
tests/extra_python_package/test_files.py
+1
-0
No files found.
CMakeLists.txt
View file @
62afdc04
...
...
@@ -106,6 +106,7 @@ set(PYBIND11_HEADERS
include/pybind11/detail/init.h
include/pybind11/detail/internals.h
include/pybind11/detail/smart_holder_poc.h
include/pybind11/detail/smart_holder_sfinae_hooks_only.h
include/pybind11/detail/smart_holder_type_casters.h
include/pybind11/detail/typeid.h
include/pybind11/attr.h
...
...
include/pybind11/detail/smart_holder_sfinae_hooks_only.h
View file @
62afdc04
// Copyright (c) 2021 The Pybind Development Team.
// All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#pragma once
#include "common.h"
...
...
include/pybind11/detail/smart_holder_type_casters.h
View file @
62afdc04
// Copyright (c) 2021 The Pybind Development Team.
// All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#pragma once
#define PYBIND11_SMART_HOLDER_TYPE_CASTERS_H_IS_INCLUDED
#include "smart_holder_poc.h"
#include "smart_holder_sfinae_hooks_only.h"
...
...
tests/extra_python_package/test_files.py
View file @
62afdc04
...
...
@@ -44,6 +44,7 @@ detail_headers = {
"include/pybind11/detail/init.h"
,
"include/pybind11/detail/internals.h"
,
"include/pybind11/detail/smart_holder_poc.h"
,
"include/pybind11/detail/smart_holder_sfinae_hooks_only.h"
,
"include/pybind11/detail/smart_holder_type_casters.h"
,
"include/pybind11/detail/typeid.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