1
0
Fork 0

fix compile error

This commit is contained in:
jsteemann 2019-09-25 13:02:08 +02:00
parent 8a56ed9a2c
commit d1116c1c72
1 changed files with 6 additions and 2 deletions

View File

@ -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<std::string> const& other) {
TRI_ASSERT(_clients.empty());