File tree Expand file tree Collapse file tree 3 files changed +1
-49
lines changed Expand file tree Collapse file tree 3 files changed +1
-49
lines changed Original file line number Diff line number Diff line change @@ -39,4 +39,3 @@ This file is a list of ideas for gf. Some of them will eventually be in gf. Othe
39
39
- blocking bug: nemequ/hedley #35
40
40
- (packaging) use CPack to create packages
41
41
- (binding) Python binding with [ pybind11] ( https://github.com/pybind/pybind11 ) ?
42
- - (code) remove gf::unused
Original file line number Diff line number Diff line change 25
25
#include < array>
26
26
#include < vector>
27
27
28
- #include " Unused.h"
29
-
30
28
namespace gf {
31
29
#ifndef DOXYGEN_SHOULD_SKIP_THIS
32
30
inline namespace v1 {
@@ -87,11 +85,10 @@ inline namespace v1 {
87
85
* @param size The number of elements in the array
88
86
*/
89
87
constexpr
90
- StaticSpan (T *data, std::size_t size) noexcept
88
+ StaticSpan (T *data, [[maybe_unused]] std::size_t size) noexcept
91
89
: m_data(data)
92
90
{
93
91
assert (size == Size);
94
- gf::unused (size);
95
92
}
96
93
97
94
/* *
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments