Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. bool IsNullVector(const VectorClass *VectorPtr = nullptr)
  2. {
  3. if (VectorPtr)
  4. {
  5. const VectorClass& VectorRef = *VectorPtr;
  6. ...
  7. }
  8. ...
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement