Mir

Code review comment for lp:~mir-team/mir/cursor-spike-phase-2-resubmit

Revision history for this message
Daniel van Vugt (vanvugt) wrote :

Note that in Alberto's comment:

287 + MirWaitHandle *result = NULL;
~~~
Use nullptr

The result is being returned from a C API, not C++. So NULL is more correct than nullptr, because the caller will only understand NULL, not nullptr.

« Back to merge proposal