fixed, successful build
This commit is contained in:
2
Thirdparty/g2o/g2o/core/hyper_graph.h
vendored
2
Thirdparty/g2o/g2o/core/hyper_graph.h
vendored
@@ -90,7 +90,7 @@ namespace g2o {
|
||||
typedef std::set<Edge*> EdgeSet;
|
||||
typedef std::set<Vertex*> VertexSet;
|
||||
|
||||
typedef std::tr1::unordered_map<int, Vertex*> VertexIDMap;
|
||||
typedef std::unordered_map<int, Vertex*> VertexIDMap;
|
||||
typedef std::vector<Vertex*> VertexContainer;
|
||||
|
||||
//! abstract Vertex, your types must derive from that one
|
||||
|
||||
2
Thirdparty/g2o/g2o/core/robust_kernel.h
vendored
2
Thirdparty/g2o/g2o/core/robust_kernel.h
vendored
@@ -74,7 +74,7 @@ namespace g2o {
|
||||
protected:
|
||||
double _delta;
|
||||
};
|
||||
typedef std::tr1::shared_ptr<RobustKernel> RobustKernelPtr;
|
||||
typedef std::shared_ptr<RobustKernel> RobustKernelPtr;
|
||||
|
||||
} // end namespace g2o
|
||||
|
||||
|
||||
@@ -223,7 +223,7 @@ namespace g2o {
|
||||
//! rows of the matrix
|
||||
int rows() const {return _rowBlockIndices.size() ? _rowBlockIndices.back() : 0;}
|
||||
|
||||
typedef std::tr1::unordered_map<int, MatrixType*> SparseColumn;
|
||||
typedef std::unordered_map<int, MatrixType*> SparseColumn;
|
||||
|
||||
SparseBlockMatrixHashMap(const std::vector<int>& rowIndices, const std::vector<int>& colIndices) :
|
||||
_rowBlockIndices(rowIndices), _colBlockIndices(colIndices)
|
||||
|
||||
Reference in New Issue
Block a user