1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

Yet more coding style fixes.

This commit is contained in:
Andreas Kling 2018-12-03 01:38:22 +01:00
parent f31e1ceab0
commit aff89d2fd7
18 changed files with 197 additions and 199 deletions

View file

@ -9,17 +9,17 @@ public:
FileSystemPath() { }
explicit FileSystemPath(const String&);
bool isValid() const { return m_isValid; }
bool is_valid() const { return m_is_valid; }
String string() const { return m_string; }
String basename() const { return m_basename; }
private:
bool canonicalize(bool resolveSymbolicLinks = false);
bool canonicalize(bool resolve_symbolic_links = false);
String m_string;
String m_basename;
bool m_isValid { false };
bool m_is_valid { false };
};
};