aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/utility/IgnoreUnused.hpp
blob: 1534f774b90e7db0a5b9b5fc3f78627f03dcf402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

namespace armnn
{

// Utility function to selectively silence unused variable compiler warnings

template<typename ... Ts>
inline void IgnoreUnused(Ts&&...){}

} //namespace armnn