mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
Merge commit godotengine/godot@2d3bdcac35
This commit is contained in:
@@ -30,8 +30,7 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/**************************************************************************/
|
||||
|
||||
#ifndef DIR_ACCESS_UNIX_H
|
||||
#define DIR_ACCESS_UNIX_H
|
||||
#pragma once
|
||||
|
||||
#if defined(UNIX_ENABLED)
|
||||
|
||||
@@ -43,6 +42,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
class DirAccessUnix : public DirAccess {
|
||||
GDSOFTCLASS(DirAccessUnix, DirAccess);
|
||||
DIR *dir_stream = nullptr;
|
||||
|
||||
bool _cisdir = false;
|
||||
@@ -88,6 +88,7 @@ public:
|
||||
virtual Error create_link(String p_source, String p_target) override;
|
||||
|
||||
virtual bool is_case_sensitive(const String &p_path) const override;
|
||||
virtual bool is_equivalent(const String &p_path_a, const String &p_path_b) const override;
|
||||
|
||||
virtual uint64_t get_space_left() override;
|
||||
|
||||
@@ -98,5 +99,3 @@ public:
|
||||
};
|
||||
|
||||
#endif // UNIX_ENABLED
|
||||
|
||||
#endif // DIR_ACCESS_UNIX_H
|
||||
|
||||
Reference in New Issue
Block a user