aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/codemodelbackendipc/filecontainer.h
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@theqtcompany.com>2015-06-10 13:52:45 +0200
committerMarco Bubke <marco.bubke@theqtcompany.com>2015-06-10 14:41:13 +0000
commit29b96af1cbcf2011ac7d57e74161c80513ab7c5a (patch)
tree7195b45044b216f402d9ca76ecc805469f08da1a /src/libs/codemodelbackendipc/filecontainer.h
parent7309e8bb643642b37d414be802b0530b70168d0d (diff)
Cmb: Remove white spaces around operators
Change-Id: Icad10f930a5e67b90fc2addcf9625116069ff7a6 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'src/libs/codemodelbackendipc/filecontainer.h')
-rw-r--r--src/libs/codemodelbackendipc/filecontainer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/codemodelbackendipc/filecontainer.h b/src/libs/codemodelbackendipc/filecontainer.h
index bd3a9d9b4b..9b353c3d0b 100644
--- a/src/libs/codemodelbackendipc/filecontainer.h
+++ b/src/libs/codemodelbackendipc/filecontainer.h
@@ -43,8 +43,8 @@ class CMBIPC_EXPORT FileContainer
{
friend CMBIPC_EXPORT QDataStream &operator<<(QDataStream &out, const FileContainer &container);
friend CMBIPC_EXPORT QDataStream &operator>>(QDataStream &in, FileContainer &container);
- friend CMBIPC_EXPORT bool operator == (const FileContainer &first, const FileContainer &second);
- friend CMBIPC_EXPORT bool operator < (const FileContainer &first, const FileContainer &second);
+ friend CMBIPC_EXPORT bool operator==(const FileContainer &first, const FileContainer &second);
+ friend CMBIPC_EXPORT bool operator<(const FileContainer &first, const FileContainer &second);
public:
FileContainer() = default;
FileContainer(const Utf8String &filePath,
@@ -66,10 +66,10 @@ private:
CMBIPC_EXPORT QDataStream &operator<<(QDataStream &out, const FileContainer &container);
CMBIPC_EXPORT QDataStream &operator>>(QDataStream &in, FileContainer &container);
-CMBIPC_EXPORT bool operator == (const FileContainer &first, const FileContainer &second);
-CMBIPC_EXPORT bool operator < (const FileContainer &first, const FileContainer &second);
+CMBIPC_EXPORT bool operator==(const FileContainer &first, const FileContainer &second);
+CMBIPC_EXPORT bool operator<(const FileContainer &first, const FileContainer &second);
-CMBIPC_EXPORT QDebug operator <<(QDebug debug, const FileContainer &container);
+CMBIPC_EXPORT QDebug operator<<(QDebug debug, const FileContainer &container);
void PrintTo(const FileContainer &container, ::std::ostream* os);
} // namespace CodeModelBackEnd