1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Shell: Rename two 'fd' class members to have an 'm_' prefix

This commit is contained in:
AnotherTest 2020-09-16 05:10:15 +04:30 committed by Andreas Kling
parent 51e598cf0b
commit d64e00a5f6
2 changed files with 6 additions and 6 deletions

View file

@ -633,8 +633,8 @@ private:
virtual String class_name() const override { return "Fd2FdRedirection"; }
virtual bool is_command() const override { return true; }
int source_fd { -1 };
int dest_fd { -1 };
int m_source_fd { -1 };
int m_dest_fd { -1 };
};
class FunctionDeclaration final : public Node {