show/hide this revision's text 4 Fixed some formatting typos

Use C++ casts instead of C casts

use:

  • static\_cast
  • const\_cast
  • reinterpret\_cast
  • dynamic\_cast

    • static_cast
    • const_cast
    • reinterpret_cast
    • dynamic_cast

    but never C-style casts.

    How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.

    Each cast has limited powers. E.g., if you want to remove a const (for whatever reason), const\_castconst_cast won't change the type at the same time (which could be a bug difficult to find).

    Also, this enables a reviewer to search for them and then, the coder to justify them if needed.

show/hide this revision's text 3 grammar, code tags

Use C++ casts instead of C casts

use:

  • static_cast
  • const_cast
  • reinterpret_cast
  • dynamic_cast

    • static\_cast
    • const\_cast
    • reinterpret\_cast
    • dynamic\_cast

    but never C-style casts.

    How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?etc.

    Each cast as has limited power: Sopowers. E.g., if you want to remove a const (for whatever reason), it const\_cast won't change the type at the same time (which could be a bug difficult to find).

    Also, this enable enables a reviewer to search for them and then, the coder to justify them if needed.

    Post Made Community Wiki by Community
show/hide this revision's text 2 Clarification of intent
show/hide this revision's text 1