summaryrefslogtreecommitdiff
path: root/tests
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 /tests
parent7309e8bb643642b37d414be802b0530b70168d0d (diff)
downloadqt-creator-29b96af1cbcf2011ac7d57e74161c80513ab7c5a.tar.gz
Cmb: Remove white spaces around operators
Change-Id: Icad10f930a5e67b90fc2addcf9625116069ff7a6 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/codemodelbackend/unittest/unsavedfilestest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/codemodelbackend/unittest/unsavedfilestest.cpp b/tests/unit/codemodelbackend/unittest/unsavedfilestest.cpp
index 91c2022631..0da931ec81 100644
--- a/tests/unit/codemodelbackend/unittest/unsavedfilestest.cpp
+++ b/tests/unit/codemodelbackend/unittest/unsavedfilestest.cpp
@@ -47,7 +47,7 @@ using ::testing::Gt;
namespace {
-bool operator ==(const CodeModelBackEnd::FileContainer &fileContainer, const CXUnsavedFile &cxUnsavedFile)
+bool operator==(const CodeModelBackEnd::FileContainer &fileContainer, const CXUnsavedFile &cxUnsavedFile)
{
return fileContainer.filePath() == Utf8String::fromUtf8(cxUnsavedFile.Filename)
&& fileContainer.unsavedFileContent() == Utf8String(cxUnsavedFile.Contents, cxUnsavedFile.Length);