I'm developing a user space application on Raspbian in C++11.
ReSharper++ advises me to use nullptr
instead of NULL
in the following system call:
auto ret = timerfd_settime(this->_timer_fd, 0, &timeout, NULL);
assert(0 == ret);
I think that I should stay with NULL
because this library is dedicated for system programming in C.
What is the best practice in this situation?