diff options
author | 2024-10-02 20:56:43 +0300 | |
---|---|---|
committer | 2024-11-22 20:48:31 +0300 | |
commit | f271339aa1c9d55c2865b379d39b423faf22365e (patch) | |
tree | e2cb5c2d4b0a2249d40205d3c14d1fbd56ed4949 /include/filepath.h | |
parent | 71a87f8f41c191f4144a556f9158f17640cd5ad6 (diff) | |
download | newsboat-f271339aa1c9d55c2865b379d39b423faf22365e.tar.gz newsboat-f271339aa1c9d55c2865b379d39b423faf22365e.tar.zst newsboat-f271339aa1c9d55c2865b379d39b423faf22365e.zip |
Remove remaining implicit conversions from {File,Dir}BrowserFormAction
Diffstat (limited to 'include/filepath.h')
-rw-r--r-- | include/filepath.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/filepath.h b/include/filepath.h index be148b10..795a6dfb 100644 --- a/include/filepath.h +++ b/include/filepath.h @@ -64,6 +64,10 @@ public: bool operator==(const Filepath&) const; bool operator!=(const Filepath&) const; + bool operator<(const Filepath&) const; + bool operator<=(const Filepath&) const; + bool operator>(const Filepath&) const; + bool operator>=(const Filepath&) const; /// Returns the filepath as a string in locale encoding. /// |