Skip to content

Instantly share code, notes, and snippets.

@kaityo256
Created July 28, 2020 13:08
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 kaityo256/d13b3a4402b043e392df7d8180139be7 to your computer and use it in GitHub Desktop.
Save kaityo256/d13b3a4402b043e392df7d8180139be7 to your computer and use it in GitHub Desktop.
Redefined macro
#include <cstdio>
#define A 1
#define B 1
#define A B // test.cpp:5:0: warning: "A" redefined
int main() {
printf("%d\n", A);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment