File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -264,12 +264,6 @@ namespace llvm {
264
264
265
265
// / Check if this string starts with the given \p Prefix, ignoring case.
266
266
[[nodiscard]] bool starts_with_insensitive (StringRef Prefix) const ;
267
- [[nodiscard]] LLVM_DEPRECATED(
268
- " Use starts_with_insensitive instead" ,
269
- " starts_with_insensitive" ) bool startswith_insensitive (StringRef Prefix)
270
- const {
271
- return starts_with_insensitive (Prefix);
272
- }
273
267
274
268
// / Check if this string ends with the given \p Suffix.
275
269
[[nodiscard]] bool ends_with (StringRef Suffix) const {
@@ -283,12 +277,6 @@ namespace llvm {
283
277
284
278
// / Check if this string ends with the given \p Suffix, ignoring case.
285
279
[[nodiscard]] bool ends_with_insensitive (StringRef Suffix) const ;
286
- [[nodiscard]] LLVM_DEPRECATED(
287
- " Use ends_with_insensitive instead" ,
288
- " ends_with_insensitive" ) bool endswith_insensitive (StringRef Suffix)
289
- const {
290
- return ends_with_insensitive (Suffix);
291
- }
292
280
293
281
// / @}
294
282
// / @name String Searching
You can’t perform that action at this time.
0 commit comments