Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#575: remove explicit nullptr assignment
- Default "all zeros" sufficient; removes the apparent need/intent. Also, I'm not quite sure that an odd C++ couldn't assign the nullptr post-access and before the main method is called. C++17 has stronger guarantees. "The storage for objects with static storage duration (basic.stc.static) shall be zero-initialized (dcl.init) before any other initialization takes place. Zero-initialization and initialization with a constant expression are collectively called static initialization; ALL OTHER initialization is dynamic initialization..."
- Loading branch information