Small cleanups.

This commit is contained in:
Relintai 2023-12-31 00:15:49 +01:00
parent b2ea81dd54
commit ff7d8135ec
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
#include "core/reference.h"
class Directory : public Reference {
RCPP_OBJECT(Directory, Reference);
SFW_OBJECT(Directory, Reference);
public:
Error open_dir(const String &path, bool skip_specials = true);
Error open_dir(const char *path, bool skip_specials = true);

View File

@ -1,6 +1,6 @@
#include "string.h"
#include "core/math/math.h"
#include "math.h"
#include "error_macros.h"
#include "variant.h"
#include <stdlib.h>

View File

@ -1,6 +1,6 @@
#include "variant.h"
#include "core/math/math.h"
#include "math.h"
#include "core/reference.h"
Variant::Type Variant::get_type() const {