aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/utility/IgnoreUnused.hpp
blob: 1f9bbe7a280a5106f91ab9b6eae9c1b202129701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright © 2020 Arm Ltd. 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