src: fixed clang warnings, fixed undefined symbols logs, fixed code convention violations

This commit is contained in:
Eberhard Graether
2014-07-21 01:26:35 +02:00
parent 0c570d54af
commit 0d46de871a
30 changed files with 166 additions and 172 deletions
@@ -48,7 +48,7 @@ public:
bool operator==(const DummyNode& other) const
{
if(tokenId == other.tokenId
if (tokenId == other.tokenId
&& name == other.name
&& position == position)
{
@@ -64,7 +64,7 @@ public:
bool operator<(const DummyNode& other) const
{
if(tokenId < other.tokenId)
if (tokenId < other.tokenId)
{
return true;
}