diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 01:38:22 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 01:38:22 +0100 |
commit | aff89d2fd7c8653b29adb06d19fcc857f886a866 (patch) | |
tree | 8e1cd01d7af7f81f2d2b9352dd750adc8847b4d3 /AK/FileSystemPath.h | |
parent | f31e1ceab06145c8280d21fa3818e6d9cd98e47f (diff) | |
download | serenity-aff89d2fd7c8653b29adb06d19fcc857f886a866.zip |
Yet more coding style fixes.
Diffstat (limited to 'AK/FileSystemPath.h')
-rw-r--r-- | AK/FileSystemPath.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AK/FileSystemPath.h b/AK/FileSystemPath.h index 7a3623d0cc..980f836226 100644 --- a/AK/FileSystemPath.h +++ b/AK/FileSystemPath.h @@ -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 }; }; }; |