(no title)
NickPollard | 10 years ago
static const int eight = 8;
x * eight;
Sometimes magic numbers are just that - numbers. Adding constant definitions is often a good thing, but sometimes just adds noise.NickPollard | 10 years ago
static const int eight = 8;
x * eight;
Sometimes magic numbers are just that - numbers. Adding constant definitions is often a good thing, but sometimes just adds noise.
unknown|10 years ago
[deleted]
nickzoic|10 years ago