8000 fix compile error · archerli/arangodb@d1116c1 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1116c1

Browse files
committed
fix compile error
1 parent 8a56ed9 commit d1116c1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

arangod/Aql/ClusterNodes.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
#include "VocBase/vocbase.h"
3737

3838
namespace arangodb {
39+
namespace velocypack {
40+
class Builder;
41+
class Slice;
42+
}
3943
namespace aql {
4044
class ExecutionBlock;
4145
class ExecutionPlan;
@@ -176,8 +180,8 @@ class ScatterNode : public ExecutionNode {
176180
void setScatterType(ScatterType targetType) { _type = targetType; }
177181

178182
protected:
179-
void writeClientsToVelocyPack(VPackBuilder& builder) const;
180-
bool readClientsFromVelocyPack(VPackSlice base);
183+
void writeClientsToVelocyPack(velocypack::Builder& builder) const;
184+
bool readClientsFromVelocyPack(velocypack::Slice base);
181185

182186
void copyClients(std::vector<std::string> const& other) {
183187
TRI_ASSERT(_clients.empty());

0 commit comments

Comments
 (0)
0