Justin Ross created PROTON-1369:
-----------------------------------

             Summary: Use a macro to warn about deprecated function use
                 Key: PROTON-1369
                 URL: https://issues.apache.org/jira/browse/PROTON-1369
             Project: Qpid Proton
          Issue Type: Bug
          Components: proton-c
            Reporter: Ken Giusti
            Assignee: Justin Ross
            Priority: Trivial
             Fix For: 0.16.0


Once PROTON-225 is implemented, we should eventually remove the old interfaces 
after marking them deprecated.

Example:
#ifdef __GNUC__
#define DEPRECATED(func) func __attribute__ ((deprecated))
#elif defined(_MSC_VER)
#define DEPRECATED(func) __declspec(deprecated) func
#else
#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
#define DEPRECATED(func) func
#endif




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to