File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ if (CMAKE_CXX_STANDARD GREATER_EQUAL 17)
6565 )
6666endif ()
6767
68- #Use xxhash or fasthash ?
68+ #Use xxhash, fasthash or wyhash ?
6969if (HashType STREQUAL "xxhash" )
7070 list (APPEND VELOCY_SOURCE src/xxhash.cpp)
7171 add_definitions ("-DVELOCYPACK_XXHASH=1" )
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ using VPackCharBufferSink = arangodb::velocypack::CharBufferSink;
8282using VPackStringSink = arangodb::velocypack::StringSink;
8383using VPackStringLengthSink = arangodb::velocypack::StringLengthSink;
8484using VPackStringStreamSink = arangodb::velocypack::StringStreamSink;
85+ using VPackOutputFileStreamSink = arangodb::velocypack::OutputFileStreamSink;
8586#endif
8687#endif
8788
Original file line number Diff line number Diff line change 4848 " $project_dir " ' /tools/*' \
4949 " $project_dir " ' /tests/*' \
5050 " $project_dir " ' /include/velocypack/velocypack-xxhash*' \
51- " $project_dir " ' /src/*xxh*' \
52- " $project_dir " ' /src/*hash*' \
51+ " $project_dir " ' /include/velocypack/velocypack-wyhash*' \
52+ " $project_dir " ' /src/xxhash*' \
53+ " $project_dir " ' /src/fasthash*' \
5354 " $project_dir " ' /src/powers.h' \
5455 --output-file coverage.info || ferr " failed lcov"
5556
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ using VPackHashedStringRef = arangodb::velocypack::HashedStringRef;
3939using VPackHexDump = arangodb::velocypack::HexDump;
4040using VPackObjectIterator = arangodb::velocypack::ObjectIterator;
4141using VPackOptions = arangodb::velocypack::Options;
42+ using VPackOutputFileStreamSink = arangodb::velocypack::OutputFileStreamSink;
4243using VPackParser = arangodb::velocypack::Parser;
4344using VPackSerializable = arangodb::velocypack::Serializable;
4445using VPackSerialize = arangodb::velocypack::Serialize;
You can’t perform that action at this time.
0 commit comments