CPP: remove old deprecated predicate that was recently updated by an automated patch of mine

This commit is contained in:
Erik Krogh Kristensen
2022-03-05 12:38:04 +01:00
parent 1e445856e7
commit 6dd3f7f113

View File

@@ -408,13 +408,6 @@ class FormatLiteral extends Literal {
*/
FormattingFunctionCall getUse() { result.getFormat() = this }
/**
* Holds if the default meaning of `%s` is a `wchar_t *`, rather than
* a `char *` (either way, `%S` will have the opposite meaning).
* DEPRECATED: Use getDefaultCharType() instead.
*/
deprecated predicate isWideCharDefault() { this.getUse().getTarget().isWideCharDefault() }
/**
* Gets the default character type expected for `%s` by this format literal. Typically
* `char` or `wchar_t`.