diff options
author | Treeston <treeston.mmoc@gmail.com> | 2018-09-27 15:59:36 +0200 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2018-09-27 15:59:36 +0200 |
commit | ac253e1e418f1373d12a864a5952432dd0932567 (patch) | |
tree | 4126b98c760d46613b15db5f63faa37a1348713d | |
parent | 2a607e647fc5656bc4ba3d2a7e7dbc97c47c7bb8 (diff) |
cleanup unused variable error (2a607e6 follow-up)
-rw-r--r-- | src/common/Utilities/advstd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/advstd.h b/src/common/Utilities/advstd.h index 70c0d21cd51..ff39e836aad 100644 --- a/src/common/Utilities/advstd.h +++ b/src/common/Utilities/advstd.h @@ -81,7 +81,7 @@ namespace advstd constexpr auto size(const C& c) -> decltype(c.size()) { return c.size(); } template <class T, std::size_t N> - constexpr std::size_t size(const T(&array)[N]) noexcept { return N; } + constexpr std::size_t size(const T(&)[N]) noexcept { return N; } // C++20 std::remove_cvref_t template <class T> |