Style: Apply clang-tidy's modernize-use-nullptr
This commit is contained in:
parent
65a2888057
commit
9bbe51dc27
21 changed files with 50 additions and 50 deletions
|
|
@ -278,7 +278,7 @@ private:
|
|||
public:
|
||||
// Methods
|
||||
void clear();
|
||||
bool is_empty() const { return (0 == bvh_root); }
|
||||
bool is_empty() const { return (nullptr == bvh_root); }
|
||||
void optimize_bottom_up();
|
||||
void optimize_top_down(int bu_threshold = 128);
|
||||
void optimize_incremental(int passes);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue