mirror of https://gitee.com/bigwinds/arangodb
Further unnecessary friends and member variables removed
This commit is contained in:
parent
9ee17fea5a
commit
4c58817cc7
|
@ -59,7 +59,6 @@ ShortestPathBlock::ShortestPathBlock(ExecutionEngine* engine,
|
||||||
_usedConstant(false),
|
_usedConstant(false),
|
||||||
_engines(nullptr) {
|
_engines(nullptr) {
|
||||||
_opts = static_cast<ShortestPathOptions*>(ep->options());
|
_opts = static_cast<ShortestPathOptions*>(ep->options());
|
||||||
_mmdr.reset(new ManagedDocumentResult);
|
|
||||||
|
|
||||||
if (!ep->usesStartInVariable()) {
|
if (!ep->usesStartInVariable()) {
|
||||||
_startVertexId = ep->getStartVertex();
|
_startVertexId = ep->getStartVertex();
|
||||||
|
|
|
@ -45,8 +45,6 @@ namespace aql {
|
||||||
class ShortestPathNode;
|
class ShortestPathNode;
|
||||||
|
|
||||||
class ShortestPathBlock : public ExecutionBlock {
|
class ShortestPathBlock : public ExecutionBlock {
|
||||||
friend struct EdgeWeightExpanderLocal;
|
|
||||||
friend struct EdgeWeightExpanderCluster;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ShortestPathBlock(ExecutionEngine* engine, ShortestPathNode const* ep);
|
ShortestPathBlock(ExecutionEngine* engine, ShortestPathNode const* ep);
|
||||||
|
@ -96,8 +94,6 @@ class ShortestPathBlock : public ExecutionBlock {
|
||||||
/// @brief Register for the edge output
|
/// @brief Register for the edge output
|
||||||
RegisterId _edgeReg;
|
RegisterId _edgeReg;
|
||||||
|
|
||||||
std::unique_ptr<ManagedDocumentResult> _mmdr;
|
|
||||||
|
|
||||||
/// @brief options to compute the shortest path
|
/// @brief options to compute the shortest path
|
||||||
graph::ShortestPathOptions* _opts;
|
graph::ShortestPathOptions* _opts;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue