Created
July 31, 2014 14:50
-
-
Save mortennobel/b4cb8210af18a0590fd5 to your computer and use it in GitHub Desktop.
deprecated
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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