Use nullptr where possible instead of NULL or 0
This commit is contained in:
committed by
Jeremy Hayes
parent
728c689574
commit
a7603c132d
@@ -9615,7 +9615,7 @@ void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>&
|
||||
{
|
||||
TIntermNode* root = intermediate.getTreeRoot();
|
||||
|
||||
if (root == 0)
|
||||
if (root == nullptr)
|
||||
return;
|
||||
|
||||
SpvOptions defaultOptions;
|
||||
|
||||
Reference in New Issue
Block a user