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:
Max Wipfli 2021-06-29 20:12:53 +02:00 committed by Andreas Kling
commit d8be530397
Notes: sideshowbarker 2024-07-18 11:13:24 +09:00
10 changed files with 52 additions and 52 deletions

View file

@ -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] == '/'; }