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
+8
View File
@@ -1 +1,9 @@
#include "data/ElementIndex.h"
ElementIndex::ElementIndex()
{
}
ElementIndex::~ElementIndex()
{
}
+3 -1
View File
@@ -3,7 +3,9 @@
class ElementIndex
{
public:
ElementIndex();
virtual ~ElementIndex();
};
#endif // ELEMENT_INDEX_H
+8
View File
@@ -1 +1,9 @@
#include "data/SearchIndex.h"
SearchIndex::SearchIndex()
{
}
SearchIndex::~SearchIndex()
{
}
+3 -1
View File
@@ -3,7 +3,9 @@
class SearchIndex
{
public:
SearchIndex();
virtual ~SearchIndex();
};
#endif // SEARCH_INDEX_H
-1
View File
@@ -32,5 +32,4 @@ public:
virtual bool checkTokenIsNode(const Id id) const = 0;
};
#endif // GRAPH_ACCESS_H
+1 -3
View File
@@ -2,8 +2,8 @@
#include <sstream>
#include "data/graph/edgeComponent/EdgeComponent.h"
#include "data/graph/Node.h"
#include "data/graph/edgeComponent/EdgeComponent.h"
#include "utility/logging/logging.h"
Edge::Edge(EdgeType type, Node* from, Node* to)
@@ -107,8 +107,6 @@ std::string Edge::getTypeString() const
return "uses";
case EDGE_TYPEDEF_OF:
return "is typedef of";
default:
LOG_ERROR("TypeString not implemented for edge type.");
}
return "";
}
-2
View File
@@ -2,8 +2,6 @@
#include <sstream>
// #include "data/graph/edgeComponent/EdgeComponentDataType.h"
// #include "data/type/DataType.h"
#include "utility/logging/logging.h"
Node::Node(NodeType type, const std::string& name)
@@ -3,7 +3,6 @@
#include "data/graph/Edge.h"
class EdgeComponent
{
public:
@@ -21,5 +20,4 @@ private:
Edge* m_edge;
};
#endif // EDGE_COMPONENT_H
@@ -2,7 +2,6 @@
#define EDGE_COMPONENT_DATA_TYPE_H
#include "data/graph/edgeComponent/EdgeComponent.h"
#include "data/type/DataTypeModifierStack.h"
#include "data/type/DataTypeQualifierList.h"
@@ -23,5 +22,4 @@ private:
const DataTypeModifierStack m_modifierStack;
};
#endif // EDGE_COMPONENT_DATA_TYPE_H