freebsd / kyua

Testing framework for infrastructure software
BSD 3-Clause "New" or "Revised" License
147 stars 42 forks source link

Eliminate `UTILS_UNUSED_PARAM(..)` macro #201

Closed ngie-eign closed 5 years ago

ngie-eign commented 5 years ago

Unlike C, C++ has the ability to omit parameter names in implemented interfaces when the parameter is unused, aka "unnamed parameters".

This change does the following:

  1. Mechanically replace UTILS_UNUSED_PARAM(x) with /* x */.
  2. Removes all doxygen directives that reference unused_*.
  3. Removes the UTILS_UNUSED_PARAM(x) macro.

Signed-off-by: Enji Cooper yaneurabeya@gmail.com

ngie-eign commented 5 years ago

@jmmv: Travis passed. Ready when you are ;)..

ngie-eign commented 5 years ago

@jmmv: ping?