Skip to content

Instantly share code, notes, and snippets.

@mortennobel
Created July 31, 2014 14:50
Show Gist options
  • Save mortennobel/b4cb8210af18a0590fd5 to your computer and use it in GitHub Desktop.
Save mortennobel/b4cb8210af18a0590fd5 to your computer and use it in GitHub Desktop.
deprecated
Based on http://stackoverflow.com/a/21265197/420250
#ifdef __GNUC__
#define DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)
#define DEPRECATED __declspec(deprecated)
#else
#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
#define DEPRECATED
#endif
//...
//don't use me any more
DEPRECATED void OldFunc(int a, float b);
//use me instead
void NewFunc(int a, double b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment