1
0
Fork 0

Further unnecessary friends and member variables removed

This commit is contained in:
Michael Hackstein 2017-04-26 10:10:05 +02:00
parent 9ee17fea5a
commit 4c58817cc7
2 changed files with 0 additions and 5 deletions

View File

@ -59,7 +59,6 @@ ShortestPathBlock::ShortestPathBlock(ExecutionEngine* engine,
_usedConstant(false),
_engines(nullptr) {
_opts = static_cast<ShortestPathOptions*>(ep->options());
_mmdr.reset(new ManagedDocumentResult);
if (!ep->usesStartInVariable()) {
_startVertexId = ep->getStartVertex();

View File

@ -45,8 +45,6 @@ namespace aql {
class ShortestPathNode;
class ShortestPathBlock : public ExecutionBlock {
friend struct EdgeWeightExpanderLocal;
friend struct EdgeWeightExpanderCluster;
public:
ShortestPathBlock(ExecutionEngine* engine, ShortestPathNode const* ep);
@ -96,8 +94,6 @@ class ShortestPathBlock : public ExecutionBlock {
/// @brief Register for the edge output
RegisterId _edgeReg;
std::unique_ptr<ManagedDocumentResult> _mmdr;
/// @brief options to compute the shortest path
graph::ShortestPathOptions* _opts;