aboutsummaryrefslogtreecommitdiff
path: root/profiling/common/include/IgnoreUnused.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/common/include/IgnoreUnused.hpp')
-rw-r--r--profiling/common/include/IgnoreUnused.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/profiling/common/include/IgnoreUnused.hpp b/profiling/common/include/IgnoreUnused.hpp
new file mode 100644
index 0000000000..fad40d33d4
--- /dev/null
+++ b/profiling/common/include/IgnoreUnused.hpp
@@ -0,0 +1,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 \ No newline at end of file