Skip to content

Commit 9b2b8c4

Browse files
committed
Move headers and source files out of the types/ directory again.
1 parent 88c48f4 commit 9b2b8c4

15 files changed

+23
-23
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,23 +163,23 @@ cython_add_module(dynd.nd.array dynd.nd.array_pyx True
163163
dynd/src/init.cpp
164164
dynd/src/functional.cpp
165165
dynd/src/numpy_interop.cpp
166-
dynd/src/types/type_conversions.cpp
167-
dynd/src/types/type_deduction.cpp
166+
dynd/src/type_conversions.cpp
167+
dynd/src/type_deduction.cpp
168168
dynd/src/types/pyobject_type.cpp
169169
)
170170

171171
cython_add_module(dynd.config dynd.config_pyx True
172172
dynd/include/exception_translation.hpp
173173
dynd/src/array_conversions.cpp
174-
dynd/src/types/type_conversions.cpp
175-
dynd/src/types/type_deduction.cpp
174+
dynd/src/type_conversions.cpp
175+
dynd/src/type_deduction.cpp
176176
${CMAKE_CURRENT_BINARY_DIR}/dynd/src/git_version.cpp
177177
)
178178

179179
foreach(module dynd.ndt.type dynd.ndt.json dynd.nd.callable dynd.nd.functional dynd.nd.registry)
180180
cython_add_module(${module} ${module}_pyx True
181181
# Additional C++ source files:
182-
dynd/src/types/type_conversions.cpp
182+
dynd/src/type_conversions.cpp
183183
dynd/src/array_conversions.cpp)
184184
endforeach(module)
185185

dynd/include/array_functions.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "array_from_py.hpp"
2929
#include "array_conversions.hpp"
3030
#include "utility_functions.hpp"
31-
#include "types/type_functions.hpp"
31+
#include "type_functions.hpp"
3232
#include "types/pyobject_type.hpp"
3333
#include "visibility.hpp"
3434

dynd/include/kernels/apply_jit_kernel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#include <dynd/kernels/base_kernel.hpp>
44
#include <array_functions.hpp>
55
#include <utility_functions.hpp>
6-
#include <types/type_functions.hpp>
76

7+
#include "type_functions.hpp"
88
#include "array_conversions.hpp"
99

1010
namespace pydynd {

dynd/include/kernels/apply_pyobject_kernel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <dynd/func/assignment.hpp>
55

66
#include "array_conversions.hpp"
7-
#include "types/type_functions.hpp"
7+
#include "type_functions.hpp"
88
#include "types/pyobject_type.hpp"
99

1010
struct apply_pyobject_kernel

dynd/include/kernels/assign_from_pyobject_kernel.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#include "array_functions.hpp"
1818
#include "array_conversions.hpp"
1919
#include "copy_from_numpy_arrfunc.hpp"
20-
#include "types/type_functions.hpp"
21-
#include "types/type_deduction.hpp"
20+
#include "type_functions.hpp"
21+
#include "type_deduction.hpp"
2222
#include "types/pyobject_type.hpp"
2323

2424
using namespace dynd;

dynd/include/numpy_interop.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <vector>
1616

1717
#include "utility_functions.hpp"
18-
#include "types/type_functions.hpp"
18+
#include "type_functions.hpp"
1919

2020
// Define this to 1 or 0 depending on whether numpy interop
2121
// should be compiled in.

dynd/include/types/type_unpack.hpp renamed to dynd/include/type_unpack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <dynd/type_registry.hpp>
1313

14-
#include "pyobject_type.hpp"
14+
#include "types/pyobject_type.hpp"
1515

1616
using namespace dynd;
1717

0 commit comments

Comments
 (0)