File tree Expand file tree Collapse file tree 4 files changed +36
-5
lines changed
Expand file tree Collapse file tree 4 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 1+ /* **************************************************************************
2+ * Copyright (c) 2016, Wolf Vollprecht, Sylvain Corlay and Johan Mabille *
3+ * *
4+ * Distributed under the terms of the BSD 3-Clause License. *
5+ * *
6+ * The full license is in the file LICENSE, distributed with this software. *
7+ ****************************************************************************/
8+
9+ #ifndef XTENSOR_IO_XAUDIO_HPP
10+ #define XTENSOR_IO_XAUDIO_HPP
11+
112#include < stdexcept>
213#include < string>
314
@@ -63,3 +74,5 @@ namespace xt
6374 file.write (de.raw_data (), static_cast <sf_count_t >(de.size ()));
6475 }
6576}
77+
78+ #endif
Original file line number Diff line number Diff line change 1+ /* **************************************************************************
2+ * Copyright (c) 2016, Wolf Vollprecht, Sylvain Corlay and Johan Mabille *
3+ * *
4+ * Distributed under the terms of the BSD 3-Clause License. *
5+ * *
6+ * The full license is in the file LICENSE, distributed with this software. *
7+ ****************************************************************************/
8+
9+ #ifndef XTENSOR_IO_XIMAGE_HPP
10+ #define XTENSOR_IO_XIMAGE_HPP
11+
112#include < stdexcept>
213#include < string>
314
@@ -94,4 +105,6 @@ namespace xt
94105 out->close ();
95106 OIIO::ImageOutput::destroy (out);
96107 }
97- }
108+ }
109+
110+ #endif
Original file line number Diff line number Diff line change 88
99// Inspired by cnpy: https://github.com/rogersce/cnpy/
1010
11+ #ifndef XTENSOR_IO_XNPZ_HPP
12+ #define XTENSOR_IO_XNPZ_HPP
13+
1114#include < cassert>
1215#include < cstdint>
1316#include < ctime>
@@ -458,4 +461,6 @@ namespace xt
458461 stream.write (&footer[0 ], (std::streamsize) footer.size ());
459462 }
460463
461- } // namespace xt
464+ } // namespace xt
465+
466+ #endif
Original file line number Diff line number Diff line change 11/***************************************************************************
2- * Copyright (c) 2016, Johan Mabille , Sylvain Corlay and Wolf Vollprecht *
2+ * Copyright (c) 2016, Wolf Vollprecht , Sylvain Corlay and Johan Mabille *
33* *
44* Distributed under the terms of the BSD 3-Clause License. *
55* *
1111
1212#define XTENSOR_IO_VERSION_MAJOR 0
1313#define XTENSOR_IO_VERSION_MINOR 2
14- #define XTENSOR_IO_VERSION_PATCH 3
14+ #define XTENSOR_IO_VERSION_PATCH 4
1515
1616#pragma cling add_library_path(@XTENSOR_IO_CLING_LIBRARY_DIR_64@)
1717#pragma cling add_library_path(@XTENSOR_IO_CLING_LIBRARY_DIR_32@)
1818#pragma cling add_library_path(@XTENSOR_IO_CLING_LIBRARY_DIR@)
1919
20- #endif
20+ #endif
You can’t perform that action at this time.
0 commit comments