Skip to content

Instantly share code, notes, and snippets.

@Bloofer
Created December 24, 2018 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bloofer/e7a2d448bea7e914525b7dd224e1d9c4 to your computer and use it in GitHub Desktop.
Save Bloofer/e7a2d448bea7e914525b7dd224e1d9c4 to your computer and use it in GitHub Desktop.
avoid macro example
// Good Idea
namespace my_project {
class Constants {
public:
static const double PI = 3.14159;
}
}
// Bad Idea
#define PI 3.14159;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment