diff options
| author | Stijn Hinlopen <f.a.hinlopen@gmail.com> | 2020-07-03 15:26:22 +0200 |
|---|---|---|
| committer | Stijn Hinlopen <f.a.hinlopen@gmail.com> | 2020-07-03 15:26:22 +0200 |
| commit | 929b98d24b53789b3e3fbbae90aed0fe0e72b409 (patch) | |
| tree | 89156a4e626da2bef5305bee55d785f5e77aec46 /core/ustring.h | |
| parent | fd5b6e1db24facfbb6d5e9175b8e512c25fbde1d (diff) | |
| download | redot-engine-929b98d24b53789b3e3fbbae90aed0fe0e72b409.tar.gz | |
Remove String::find_last (same as rfind)
Diffstat (limited to 'core/ustring.h')
| -rw-r--r-- | core/ustring.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/ustring.h b/core/ustring.h index a86849b932..e745475f11 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -202,7 +202,6 @@ public: int find(const String &p_str, int p_from = 0) const; ///< return <0 if failed int find(const char *p_str, int p_from = 0) const; ///< return <0 if failed int find_char(const CharType &p_char, int p_from = 0) const; ///< return <0 if failed - int find_last(const String &p_str) const; ///< return <0 if failed int findn(const String &p_str, int p_from = 0) const; ///< return <0 if failed, case insensitive int rfind(const String &p_str, int p_from = -1) const; ///< return <0 if failed int rfindn(const String &p_str, int p_from = -1) const; ///< return <0 if failed, case insensitive |
