Skip to content

Commit

Permalink
fix -Wreorder warning in context ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
pmed committed Oct 16, 2023
1 parent 7e02e46 commit fa8fe96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v8pp/context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ context::context(context&& src) noexcept
: own_isolate_(std::exchange(src.own_isolate_, false))
, enter_context_(std::exchange(src.enter_context_, false))
, isolate_(std::exchange(src.isolate_, nullptr))
, array_buffer_allocator_(std::move(src.array_buffer_allocator_))
, impl_(std::move(src.impl_))
, array_buffer_allocator_(std::move(src.array_buffer_allocator_))
, modules_(std::move(src.modules_))
, lib_path_(std::move(src.lib_path_))
{
Expand Down

0 comments on commit fa8fe96

Please sign in to comment.