Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
None
Description
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
Attachments
Issue Links
- is blocked by
-
PROTON-225 Redesign Transport interface such that Transport owns the in/out buffers rather than its client
- Closed
- is cloned by
-
PROTON-1369 Add deprecation warnings to the C++ binding
- Closed