diff --git a/arangod/Aql/ClusterNodes.h b/arangod/Aql/ClusterNodes.h index 6f2498c147..fed77455a9 100644 --- a/arangod/Aql/ClusterNodes.h +++ b/arangod/Aql/ClusterNodes.h @@ -36,6 +36,10 @@ #include "VocBase/vocbase.h" namespace arangodb { +namespace velocypack { +class Builder; +class Slice; +} namespace aql { class ExecutionBlock; class ExecutionPlan; @@ -176,8 +180,8 @@ class ScatterNode : public ExecutionNode { void setScatterType(ScatterType targetType) { _type = targetType; } protected: - void writeClientsToVelocyPack(VPackBuilder& builder) const; - bool readClientsFromVelocyPack(VPackSlice base); + void writeClientsToVelocyPack(velocypack::Builder& builder) const; + bool readClientsFromVelocyPack(velocypack::Slice base); void copyClients(std::vector const& other) { TRI_ASSERT(_clients.empty());