beliefer opened a new pull request, #10958:
URL: https://github.com/apache/incubator-gluten/pull/10958

   ## What changes are proposed in this pull request?
   
   This PR proposes to replace `NULL` with `nullptr`.
   In C++, `nullptr` should always be used instead of `NULL` because:
   
   - Provide better type security
   - Avoid overloading and resolving ambiguity
   - Better performance in template programming
   - The code intent is clearer
   - It is a standard practice in modern C++
   
   Only consider using `NULL` when maintaining very old code repositories or 
interacting with C interfaces that only accept `NULL`.
   
   ## How was this patch tested?
   
   GA tests.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to