Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the deprecation macro #87662

Open
rruuaanng opened this issue Mar 26, 2025 · 0 comments
Open

Improve the deprecation macro #87662

rruuaanng opened this issue Mar 26, 2025 · 0 comments
Assignees
Labels
area: Toolchains Toolchains Enhancement Changes/Updates/Additions to existing features

Comments

@rruuaanng
Copy link
Collaborator

rruuaanng commented Mar 26, 2025

Is your enhancement proposal related to a problem? Please describe.

Currently, we use __deprecated to mark function signatures as deprecated. I believe that improving it to the following approach may better facilitate early planning of the API lifecycle.

Describe the solution you'd like

#define __deprecated __attribute__((deprecated))

To

#define __deprecated(version) __attribute__((deprecated(#version)))

Then, provide an external macro in toolchain.h, which I will refer to as DEPRECATED. I will provide the following code for this:

DEPRECATED(4.3) void foo()
{

}

int main(int argc, char const *argv[])
{
    foo();
    
    return 0;
}

Will throw

test.c:19:5: warning: 'foo' is deprecated: 4.3 [-Wdeprecated-declarations]
   19 |     foo();

As you can see, it also prints the version information. based on practice, they are supported in both Clang and GCC.

Describe alternatives you've considered

Additional context

@rruuaanng rruuaanng added the Enhancement Changes/Updates/Additions to existing features label Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: Toolchains Toolchains Enhancement Changes/Updates/Additions to existing features
Projects
None yet
Development

No branches or pull requests

7 participants