mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Moved member variables to initializer list
This commit is contained in:
parent
41d1dba35f
commit
08f22f1cf0
44 changed files with 609 additions and 694 deletions
|
|
@ -309,11 +309,10 @@ FileAccess *FileAccessUnix::create_libc() {
|
|||
|
||||
CloseNotificationFunc FileAccessUnix::close_notification_func = NULL;
|
||||
|
||||
FileAccessUnix::FileAccessUnix() {
|
||||
|
||||
f = NULL;
|
||||
flags = 0;
|
||||
last_error = OK;
|
||||
FileAccessUnix::FileAccessUnix() :
|
||||
f(NULL),
|
||||
flags(0),
|
||||
last_error(OK) {
|
||||
}
|
||||
|
||||
FileAccessUnix::~FileAccessUnix() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue