From e1452710edb6b1d0ebceb4b9273dae4b2f899630 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 28 Jul 2011 12:55:39 +0300 Subject: [PATCH] Style update: remove alignment --- source/fs/path.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/source/fs/path.h b/source/fs/path.h index 749578a..ed9cc79 100644 --- a/source/fs/path.h +++ b/source/fs/path.h @@ -34,11 +34,11 @@ public: Iterator(const Path &); public: - Iterator &operator++(); - Iterator &operator--(); + Iterator &operator++(); + Iterator &operator--(); std::string operator*() const; - bool operator==(const Iterator &i) const { return (start==i.start && end==i.end); } - bool operator!=(const Iterator &i) const { return !(*this==i); } + bool operator==(const Iterator &i) const { return (start==i.start && end==i.end); } + bool operator!=(const Iterator &i) const { return !(*this==i); } }; private: @@ -52,9 +52,9 @@ public: const std::string &str() const { return path; } /// Returns the number of components in the path. - unsigned size() const; + unsigned size() const; - bool empty() const { return path.empty(); } + bool empty() const { return path.empty(); } /// Determines whether the path starts from the root directory bool is_absolute() const; @@ -72,9 +72,9 @@ public: */ std::string operator[](int) const; - bool operator==(const Path &) const; - Iterator begin() const; - Iterator end() const; + bool operator==(const Path &) const; + Iterator begin() const; + Iterator end() const; private: void init(const std::string &); void add_component(const std::string &); -- 2.43.0