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

#pragma once

namespace arm
{

namespace pipe
{
// Utility function to selectively silence unused variable compiler warnings

template<typename ... Ts>
inline void IgnoreUnused(Ts&&...){}
} //namespace pipe
} //namespace arm