Monday, November 6, 2017

C++17: The register keyword was removed.

C++17 removed the register keyword. This keyword used to be used to hint to the compiler that a local variable is used so much that it would be nice to use a CPU Register for it instead of the stack.

No comments:

Post a Comment