mirror of
https://github.com/ksherlock/x65.git
synced 2025-01-13 20:32:00 +00:00
Fixed missing return in Find
This commit is contained in:
parent
45b998fa2b
commit
8e95b7ffb9
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
./x65.exe
|
||||
*.suo
|
||||
*.ipch
|
||||
*.aps
|
||||
|
2
struse.h
2
struse.h
@ -770,7 +770,7 @@ public:
|
||||
int find_after_last(char a, char b) const { return get_strref().find_after_last(a, b); }
|
||||
int find_after_last(char a1, char a2, char b) const { return get_strref().find_after_last(a1, a2, b); }
|
||||
int find(const strref str) const { return get_strref().find(str); }
|
||||
int find(const strref str, strl_t pos) const { get_strref().find(str, pos); }
|
||||
int find(const strref str, strl_t pos) const { return get_strref().find(str, pos); }
|
||||
int find(const char *str, strl_t pos = 0) const { return get_strref().find(str, pos); }
|
||||
int find_case(const strref str) const { return get_strref().find_case(str); }
|
||||
int find_case(const char *str) const { return get_strref().find_case(str); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user