8000 fix static_assert in MSVC · sleepycat/arangodb@fc49771 · GitHub
[go: up one dir, main page]

Skip to content

Commit fc49771

Browse files
committed
fix static_assert in MSVC
1 parent 600bd60 commit fc49771

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arangod/Aql/Expression.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,8 +869,8 @@ AqlValue Expression::executeSimpleExpressionFCall(
869869
VPackFunctionParameters parameters{arena};
870870

871871
// same here
872-
SmallVector<uint8_t, 64>::allocator_type::arena_type arena2;
873-
SmallVector<uint8_t, 64> destroyParameters{arena2};
872+
SmallVector<uint64_t>::allocator_type::arena_type arena2;
873+
SmallVector<uint64_t> destroyParameters{arena2};
874874
parameters.reserve(n);
875875
destroyParameters.reserve(n);
876876

0 commit comments

Comments
 (0)
0