Cleanup: Clang-Tidy modernize-use-nullptr
Replace `NULL` with `nullptr` in C++ code. No functional changes.
This commit is contained in:
@@ -70,7 +70,7 @@ static uint16_t vbo_bind(const ShaderInterface *interface,
|
||||
const char *name = GPU_vertformat_attr_name_get(format, a, n_idx);
|
||||
const ShaderInput *input = interface->attr_get(name);
|
||||
|
||||
if (input == NULL) {
|
||||
if (input == nullptr) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user