You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
DirAccess: Drop compat get_next(bool *is_dir) which was hidden
Fixes this warning: ``` ./core/os/dir_access.h:74:17: warning: 'virtual String DirAccess::get_next(bool*)' was hidden [-Woverloaded-virtual] ``` Part of #30790.
This commit is contained in:
@@ -179,14 +179,6 @@ Error DirAccess::make_dir_recursive(String p_dir) {
|
||||
return OK;
|
||||
}
|
||||
|
||||
String DirAccess::get_next(bool *p_is_dir) {
|
||||
|
||||
String next = get_next();
|
||||
if (p_is_dir)
|
||||
*p_is_dir = current_is_dir();
|
||||
return next;
|
||||
}
|
||||
|
||||
String DirAccess::fix_path(String p_path) const {
|
||||
|
||||
switch (_access_type) {
|
||||
|
||||
Reference in New Issue
Block a user