mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 10:07:43 +00:00
AK+Everywhere: Remove "null state" of LexicalPath
This removes the default constructor of LexicalPath, and subsequently modifies all its users to accommodate the change.
This commit is contained in:
parent
4c018909f7
commit
d8be530397
10 changed files with 52 additions and 52 deletions
|
@ -14,7 +14,6 @@ namespace AK {
|
|||
|
||||
class LexicalPath {
|
||||
public:
|
||||
LexicalPath() = default;
|
||||
explicit LexicalPath(String);
|
||||
|
||||
bool is_absolute() const { return !m_string.is_empty() && m_string[0] == '/'; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue