mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
This PR adds unused parameter name comments in C++ declarations to improve code readability. Pull Request resolved: https://github.com/pytorch/pytorch/pull/164912 Approved by: https://github.com/Skylion007
8 lines
130 B
C++
8 lines
130 B
C++
#include <c10/util/UniqueVoidPtr.h>
|
|
|
|
namespace c10::detail {
|
|
|
|
void deleteNothing(void* /*unused*/) {}
|
|
|
|
} // namespace c10::detail
|