Mark as deprecated function parameters in C++14How to mark a class as Deprecated?Why is Java Vector (and Stack) class considered obsolete or deprecated?Why do we need virtual functions in C++?UIDevice uniqueIdentifier deprecated - What to do now?How to declare or mark a Java method as deprecated?Rails I18n validation deprecation warningWhat is the endianness of binary literals in C++14?getResources().getColor() is deprecatedJava Deprecated APIs and SuppressWarnings “deprecation” - practical approachDeprecate a function parameter

Are the guests in Westworld forbidden to tell the hosts that they are robots?

When a class dynamically allocates itself at constructor, why does stack overflow happen instead of std::bad_alloc?

Savage Road Signs

A life of PhD: is it feasible?

Is it true that "only photographers care about noise"?

Can I attach a DC blower to intake manifold of my 150CC Yamaha FZS FI engine?

Nth term of Van Eck Sequence

Placement of positioning lights on A320 winglets

In Pandemic, why take the extra step of eradicating a disease after you've cured it?

Changing the PK column of a data extension without completely recreating it

Convert GE Load Center to main breaker

Why does there seem to be an extreme lack of public trashcans in Taiwan?

Is it a good security practice to force employees hide their employer to avoid being targeted?

Does WiFi affect the quality of images downloaded from the internet?

What does BREAD stand for while drafting?

Why is it bad to use your whole foot in rock climbing

Is tuition reimbursement a good idea if you have to stay with the job

If absolute velocity does not exist, how can we say a rocket accelerates in empty space?

How do I change my LaTex document to follow some Word requirements?

Why are ambiguous grammars bad?

Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes

What did the 8086 (and 8088) do upon encountering an illegal instruction?

The best in flight meal option for those suffering from reflux

Fastest way from 8 to 7



Mark as deprecated function parameters in C++14


How to mark a class as Deprecated?Why is Java Vector (and Stack) class considered obsolete or deprecated?Why do we need virtual functions in C++?UIDevice uniqueIdentifier deprecated - What to do now?How to declare or mark a Java method as deprecated?Rails I18n validation deprecation warningWhat is the endianness of binary literals in C++14?getResources().getColor() is deprecatedJava Deprecated APIs and SuppressWarnings “deprecation” - practical approachDeprecate a function parameter






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








11















Reading this blog post and its comments, I have noticed that it gives as an example the possibility of marking specific function parameters as deprecated, as in (exaple taken from the post):



// Deprecate a function parameter
int triple([[deprecated]] int x);


Now I was wondering, what is a good use case for such a feature? No one in the comments of that post or anywhere else I have searched seem to have a clue.



EDIT:



To see it in action, there is a compilable example on goldbolt










share|improve this question
























  • Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

    – aschepler
    May 28 at 10:56












  • Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

    – bracco23
    May 28 at 11:00






  • 1





    Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

    – eerorika
    May 28 at 11:04






  • 1





    @eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

    – bracco23
    May 28 at 12:04

















11















Reading this blog post and its comments, I have noticed that it gives as an example the possibility of marking specific function parameters as deprecated, as in (exaple taken from the post):



// Deprecate a function parameter
int triple([[deprecated]] int x);


Now I was wondering, what is a good use case for such a feature? No one in the comments of that post or anywhere else I have searched seem to have a clue.



EDIT:



To see it in action, there is a compilable example on goldbolt










share|improve this question
























  • Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

    – aschepler
    May 28 at 10:56












  • Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

    – bracco23
    May 28 at 11:00






  • 1





    Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

    – eerorika
    May 28 at 11:04






  • 1





    @eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

    – bracco23
    May 28 at 12:04













11












11








11








Reading this blog post and its comments, I have noticed that it gives as an example the possibility of marking specific function parameters as deprecated, as in (exaple taken from the post):



// Deprecate a function parameter
int triple([[deprecated]] int x);


Now I was wondering, what is a good use case for such a feature? No one in the comments of that post or anywhere else I have searched seem to have a clue.



EDIT:



To see it in action, there is a compilable example on goldbolt










share|improve this question
















Reading this blog post and its comments, I have noticed that it gives as an example the possibility of marking specific function parameters as deprecated, as in (exaple taken from the post):



// Deprecate a function parameter
int triple([[deprecated]] int x);


Now I was wondering, what is a good use case for such a feature? No one in the comments of that post or anywhere else I have searched seem to have a clue.



EDIT:



To see it in action, there is a compilable example on goldbolt







c++ c++14 deprecated deprecation-warning






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 28 at 12:04







bracco23

















asked May 28 at 10:51









bracco23bracco23

1,281518




1,281518












  • Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

    – aschepler
    May 28 at 10:56












  • Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

    – bracco23
    May 28 at 11:00






  • 1





    Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

    – eerorika
    May 28 at 11:04






  • 1





    @eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

    – bracco23
    May 28 at 12:04

















  • Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

    – aschepler
    May 28 at 10:56












  • Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

    – bracco23
    May 28 at 11:00






  • 1





    Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

    – eerorika
    May 28 at 11:04






  • 1





    @eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

    – bracco23
    May 28 at 12:04
















Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

– aschepler
May 28 at 10:56






Hm. I was thinking default arguments, but gcc doesn't warn on either statement in void f([[deprecated]] int n = 0); void g() f(); f(2); . It only warns within the function body.

– aschepler
May 28 at 10:56














Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

– bracco23
May 28 at 11:00





Using gcc trunk, as you can see on goldbolt, the warning is issued when the parameter is used inside the function, not at call, that's why it is puzzling.

– bracco23
May 28 at 11:00




1




1





Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

– eerorika
May 28 at 11:04





Why do you assume that there is a use case? Maybe it's possible just because there was not an exception made to disallow it.

– eerorika
May 28 at 11:04




1




1





@eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

– bracco23
May 28 at 12:04





@eerorika I am not assuming there is a use case. It is entirely possible this feature just happened to be available without any planning for it and to not be harmful to leave it as it is, yet I am curious to know if there is actually a use case.

– bracco23
May 28 at 12:04












3 Answers
3






active

oldest

votes


















10














Say you had a function like this:



void* allocate(std::size_t sz, void* hint = nullptr) 
// if you give `hint` it *might* be more efficient



And then you decided that it is no longer worth the effort to do stuff based on hint. So you would do this:



void* allocate(std::size_t sz, [[deprecated]] void* hint = nullptr) 
// `hint` is ignored. The compiler warns me if I use it in the
// function body accidentally, and people reading the function
// signature can see that it is probably going to be ignored.



This allows the library to keep the same signature/ABI (So you don't need to recompile stuff that uses it and legacy code can still keep using it without doing any harm), and also prevents it from accidentally being used again when changing the function.



But this is mostly for developers of the function, not the users of the function, in the future so they know why a seemingly "useless" parameter is there.



I would also think that this would disable the "unused parameter" warning with the -Werror=unused-parameter flag in gcc/clang, but it doesn't. Using (void) deprecated_parameter also issues a warning about using a deprecated parameter, so this seems like a bug. If it did disable the unused param warning, that would be another use case for [[deprecated]].






share|improve this answer




















  • 1





    But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

    – aschepler
    May 28 at 11:18











  • @aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

    – Artyer
    May 28 at 11:26






  • 1





    That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

    – StoryTeller
    May 28 at 14:40


















3














The rule is that the attribute is valid on, amongst other things, variable declarations (broadly). It's not specifically permitted for such declarations found in function arguments.



The original proposal, N3394, doesn't mention such a use case, either, and neither does the documentation for the original feature in GCC (which regardless accepts the equivalent usage) or in VS (I didn't check Clang).



As such, I think it's an "accident" that this is permitted, not something that anyone really had in mind as being useful.



Could it be useful to document deprecated defaulted arguments, as Artyer explores? Yes, potentially, and vaguely. But as Artyer also found, mainstream compilers don't actually react to this usage in a helpful manner.



So, at the present time, it's not useful, and the language feature wasn't particularly designed to be useful in this case.






share|improve this answer

























  • While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

    – bracco23
    May 28 at 13:34











  • I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

    – Lightness Races in Orbit
    May 28 at 13:41



















0














Imagine a library that is implemented, used and maintained for many years. This library is used in multiple projects.

If you would simply remove the parameter, all the projects would have to immediately adapt the source code to be able to compile again, after they upgraded to the new library version.

If a default value is added to the parameter, but the parameter not used anymore, the projects would still compile without any change, but nobody would note that something has changed at all, and maybe some behaviour/feature that was controlled by this parameter does not work anymore.



So, by marking the parameter as deprecated the projects can compile without a change, but they get a warning that something has changed and that they should change their source code, because sooner or later this parameter will disappear.






share|improve this answer


















  • 2





    But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

    – aschepler
    May 28 at 11:17











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56340596%2fmark-as-deprecated-function-parameters-in-c14%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









10














Say you had a function like this:



void* allocate(std::size_t sz, void* hint = nullptr) 
// if you give `hint` it *might* be more efficient



And then you decided that it is no longer worth the effort to do stuff based on hint. So you would do this:



void* allocate(std::size_t sz, [[deprecated]] void* hint = nullptr) 
// `hint` is ignored. The compiler warns me if I use it in the
// function body accidentally, and people reading the function
// signature can see that it is probably going to be ignored.



This allows the library to keep the same signature/ABI (So you don't need to recompile stuff that uses it and legacy code can still keep using it without doing any harm), and also prevents it from accidentally being used again when changing the function.



But this is mostly for developers of the function, not the users of the function, in the future so they know why a seemingly "useless" parameter is there.



I would also think that this would disable the "unused parameter" warning with the -Werror=unused-parameter flag in gcc/clang, but it doesn't. Using (void) deprecated_parameter also issues a warning about using a deprecated parameter, so this seems like a bug. If it did disable the unused param warning, that would be another use case for [[deprecated]].






share|improve this answer




















  • 1





    But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

    – aschepler
    May 28 at 11:18











  • @aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

    – Artyer
    May 28 at 11:26






  • 1





    That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

    – StoryTeller
    May 28 at 14:40















10














Say you had a function like this:



void* allocate(std::size_t sz, void* hint = nullptr) 
// if you give `hint` it *might* be more efficient



And then you decided that it is no longer worth the effort to do stuff based on hint. So you would do this:



void* allocate(std::size_t sz, [[deprecated]] void* hint = nullptr) 
// `hint` is ignored. The compiler warns me if I use it in the
// function body accidentally, and people reading the function
// signature can see that it is probably going to be ignored.



This allows the library to keep the same signature/ABI (So you don't need to recompile stuff that uses it and legacy code can still keep using it without doing any harm), and also prevents it from accidentally being used again when changing the function.



But this is mostly for developers of the function, not the users of the function, in the future so they know why a seemingly "useless" parameter is there.



I would also think that this would disable the "unused parameter" warning with the -Werror=unused-parameter flag in gcc/clang, but it doesn't. Using (void) deprecated_parameter also issues a warning about using a deprecated parameter, so this seems like a bug. If it did disable the unused param warning, that would be another use case for [[deprecated]].






share|improve this answer




















  • 1





    But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

    – aschepler
    May 28 at 11:18











  • @aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

    – Artyer
    May 28 at 11:26






  • 1





    That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

    – StoryTeller
    May 28 at 14:40













10












10








10







Say you had a function like this:



void* allocate(std::size_t sz, void* hint = nullptr) 
// if you give `hint` it *might* be more efficient



And then you decided that it is no longer worth the effort to do stuff based on hint. So you would do this:



void* allocate(std::size_t sz, [[deprecated]] void* hint = nullptr) 
// `hint` is ignored. The compiler warns me if I use it in the
// function body accidentally, and people reading the function
// signature can see that it is probably going to be ignored.



This allows the library to keep the same signature/ABI (So you don't need to recompile stuff that uses it and legacy code can still keep using it without doing any harm), and also prevents it from accidentally being used again when changing the function.



But this is mostly for developers of the function, not the users of the function, in the future so they know why a seemingly "useless" parameter is there.



I would also think that this would disable the "unused parameter" warning with the -Werror=unused-parameter flag in gcc/clang, but it doesn't. Using (void) deprecated_parameter also issues a warning about using a deprecated parameter, so this seems like a bug. If it did disable the unused param warning, that would be another use case for [[deprecated]].






share|improve this answer















Say you had a function like this:



void* allocate(std::size_t sz, void* hint = nullptr) 
// if you give `hint` it *might* be more efficient



And then you decided that it is no longer worth the effort to do stuff based on hint. So you would do this:



void* allocate(std::size_t sz, [[deprecated]] void* hint = nullptr) 
// `hint` is ignored. The compiler warns me if I use it in the
// function body accidentally, and people reading the function
// signature can see that it is probably going to be ignored.



This allows the library to keep the same signature/ABI (So you don't need to recompile stuff that uses it and legacy code can still keep using it without doing any harm), and also prevents it from accidentally being used again when changing the function.



But this is mostly for developers of the function, not the users of the function, in the future so they know why a seemingly "useless" parameter is there.



I would also think that this would disable the "unused parameter" warning with the -Werror=unused-parameter flag in gcc/clang, but it doesn't. Using (void) deprecated_parameter also issues a warning about using a deprecated parameter, so this seems like a bug. If it did disable the unused param warning, that would be another use case for [[deprecated]].







share|improve this answer














share|improve this answer



share|improve this answer








edited May 28 at 11:34

























answered May 28 at 11:04









ArtyerArtyer

6,829931




6,829931







  • 1





    But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

    – aschepler
    May 28 at 11:18











  • @aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

    – Artyer
    May 28 at 11:26






  • 1





    That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

    – StoryTeller
    May 28 at 14:40












  • 1





    But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

    – aschepler
    May 28 at 11:18











  • @aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

    – Artyer
    May 28 at 11:26






  • 1





    That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

    – StoryTeller
    May 28 at 14:40







1




1





But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

– aschepler
May 28 at 11:18





But neither clang++ nor g++ actually warn about any calls to the function, whether or not they give an argument for hint.

– aschepler
May 28 at 11:18













@aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

– Artyer
May 28 at 11:26





@aschepler Yes, because that parameter is always passed anyways (even if it is implicitly on the callers side because of the default parameter), and it's different from the whole function being deprecated. It's more like it is deprecated inside the function body, but the caller doesn't always need to care about that.

– Artyer
May 28 at 11:26




1




1





That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

– StoryTeller
May 28 at 14:40





That's neat. But it's not as idiomatic as just removing the parameter name once that's been cleaned up.

– StoryTeller
May 28 at 14:40













3














The rule is that the attribute is valid on, amongst other things, variable declarations (broadly). It's not specifically permitted for such declarations found in function arguments.



The original proposal, N3394, doesn't mention such a use case, either, and neither does the documentation for the original feature in GCC (which regardless accepts the equivalent usage) or in VS (I didn't check Clang).



As such, I think it's an "accident" that this is permitted, not something that anyone really had in mind as being useful.



Could it be useful to document deprecated defaulted arguments, as Artyer explores? Yes, potentially, and vaguely. But as Artyer also found, mainstream compilers don't actually react to this usage in a helpful manner.



So, at the present time, it's not useful, and the language feature wasn't particularly designed to be useful in this case.






share|improve this answer

























  • While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

    – bracco23
    May 28 at 13:34











  • I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

    – Lightness Races in Orbit
    May 28 at 13:41
















3














The rule is that the attribute is valid on, amongst other things, variable declarations (broadly). It's not specifically permitted for such declarations found in function arguments.



The original proposal, N3394, doesn't mention such a use case, either, and neither does the documentation for the original feature in GCC (which regardless accepts the equivalent usage) or in VS (I didn't check Clang).



As such, I think it's an "accident" that this is permitted, not something that anyone really had in mind as being useful.



Could it be useful to document deprecated defaulted arguments, as Artyer explores? Yes, potentially, and vaguely. But as Artyer also found, mainstream compilers don't actually react to this usage in a helpful manner.



So, at the present time, it's not useful, and the language feature wasn't particularly designed to be useful in this case.






share|improve this answer

























  • While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

    – bracco23
    May 28 at 13:34











  • I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

    – Lightness Races in Orbit
    May 28 at 13:41














3












3








3







The rule is that the attribute is valid on, amongst other things, variable declarations (broadly). It's not specifically permitted for such declarations found in function arguments.



The original proposal, N3394, doesn't mention such a use case, either, and neither does the documentation for the original feature in GCC (which regardless accepts the equivalent usage) or in VS (I didn't check Clang).



As such, I think it's an "accident" that this is permitted, not something that anyone really had in mind as being useful.



Could it be useful to document deprecated defaulted arguments, as Artyer explores? Yes, potentially, and vaguely. But as Artyer also found, mainstream compilers don't actually react to this usage in a helpful manner.



So, at the present time, it's not useful, and the language feature wasn't particularly designed to be useful in this case.






share|improve this answer















The rule is that the attribute is valid on, amongst other things, variable declarations (broadly). It's not specifically permitted for such declarations found in function arguments.



The original proposal, N3394, doesn't mention such a use case, either, and neither does the documentation for the original feature in GCC (which regardless accepts the equivalent usage) or in VS (I didn't check Clang).



As such, I think it's an "accident" that this is permitted, not something that anyone really had in mind as being useful.



Could it be useful to document deprecated defaulted arguments, as Artyer explores? Yes, potentially, and vaguely. But as Artyer also found, mainstream compilers don't actually react to this usage in a helpful manner.



So, at the present time, it's not useful, and the language feature wasn't particularly designed to be useful in this case.







share|improve this answer














share|improve this answer



share|improve this answer








edited May 28 at 12:15

























answered May 28 at 12:09









Lightness Races in OrbitLightness Races in Orbit

303k56491845




303k56491845












  • While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

    – bracco23
    May 28 at 13:34











  • I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

    – Lightness Races in Orbit
    May 28 at 13:41


















  • While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

    – bracco23
    May 28 at 13:34











  • I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

    – Lightness Races in Orbit
    May 28 at 13:41

















While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

– bracco23
May 28 at 13:34





While I can see how such a corner case might happen without being planned, I think it is unlikely it has been unnoticed for all this time. Any reference to it in some discussion after it has been introduced?

– bracco23
May 28 at 13:34













I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

– Lightness Races in Orbit
May 28 at 13:41






I don't think it "hasn't been noticed", I think you're just the first person to care :P After all, there are plenty of other useless pieces of code we can write, and that's up to us as individuals. In other words: why bother writing a special rule into the language to prohibit it? What would we gain from such a complication? That's really the crux of it.

– Lightness Races in Orbit
May 28 at 13:41












0














Imagine a library that is implemented, used and maintained for many years. This library is used in multiple projects.

If you would simply remove the parameter, all the projects would have to immediately adapt the source code to be able to compile again, after they upgraded to the new library version.

If a default value is added to the parameter, but the parameter not used anymore, the projects would still compile without any change, but nobody would note that something has changed at all, and maybe some behaviour/feature that was controlled by this parameter does not work anymore.



So, by marking the parameter as deprecated the projects can compile without a change, but they get a warning that something has changed and that they should change their source code, because sooner or later this parameter will disappear.






share|improve this answer


















  • 2





    But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

    – aschepler
    May 28 at 11:17















0














Imagine a library that is implemented, used and maintained for many years. This library is used in multiple projects.

If you would simply remove the parameter, all the projects would have to immediately adapt the source code to be able to compile again, after they upgraded to the new library version.

If a default value is added to the parameter, but the parameter not used anymore, the projects would still compile without any change, but nobody would note that something has changed at all, and maybe some behaviour/feature that was controlled by this parameter does not work anymore.



So, by marking the parameter as deprecated the projects can compile without a change, but they get a warning that something has changed and that they should change their source code, because sooner or later this parameter will disappear.






share|improve this answer


















  • 2





    But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

    – aschepler
    May 28 at 11:17













0












0








0







Imagine a library that is implemented, used and maintained for many years. This library is used in multiple projects.

If you would simply remove the parameter, all the projects would have to immediately adapt the source code to be able to compile again, after they upgraded to the new library version.

If a default value is added to the parameter, but the parameter not used anymore, the projects would still compile without any change, but nobody would note that something has changed at all, and maybe some behaviour/feature that was controlled by this parameter does not work anymore.



So, by marking the parameter as deprecated the projects can compile without a change, but they get a warning that something has changed and that they should change their source code, because sooner or later this parameter will disappear.






share|improve this answer













Imagine a library that is implemented, used and maintained for many years. This library is used in multiple projects.

If you would simply remove the parameter, all the projects would have to immediately adapt the source code to be able to compile again, after they upgraded to the new library version.

If a default value is added to the parameter, but the parameter not used anymore, the projects would still compile without any change, but nobody would note that something has changed at all, and maybe some behaviour/feature that was controlled by this parameter does not work anymore.



So, by marking the parameter as deprecated the projects can compile without a change, but they get a warning that something has changed and that they should change their source code, because sooner or later this parameter will disappear.







share|improve this answer












share|improve this answer



share|improve this answer










answered May 28 at 11:03









ReneRene

1,8861617




1,8861617







  • 2





    But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

    – aschepler
    May 28 at 11:17












  • 2





    But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

    – aschepler
    May 28 at 11:17







2




2





But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

– aschepler
May 28 at 11:17





But both g++ and clang++ warn only on uses of the parameter within that function's definition, and not on any calls to the function, whether or not they provide an argument for that parameter. This is the opposite of what you describe.

– aschepler
May 28 at 11:17

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56340596%2fmark-as-deprecated-function-parameters-in-c14%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos