| 128 | // to avoid compiler warnings. Going forward we prefer ATTRIBUTE_UNUSED. |
| 129 | template <typename... T> |
| 130 | void UNUSED(const T&...) { |
| 131 | } |
| 132 | |
| 133 | // An attribute to place on a parameter to a function, for example: |
| 134 | // int foo(int x ATTRIBUTE_UNUSED) { return 10; } |