AndreyKulikov2022

Results 5 issues of AndreyKulikov2022

## Expected Behavior CMakeLists.txt: cmake_minimum_required(VERSION 3.19) project(my_hpx) find_package(HPX REQUIRED) add_executable(my_hpx main.cpp) target_link_libraries(my_hpx HPX::hpx HPX::wrap_main HPX::iostreams_component) main.cpp: #include #include int main() { hpx::cout

I am trying to move-assign one container to the other: ``` void func(boost::container::deque& deque1){ boost::container::deque deque2; // Fill deque2 with elements. ... deque1 = std::move(deque2); } ``` If `T` is...

### Package Name/Version folly/v2024.05.02.00 ### Changelog https://github.com/facebook/folly/releases ### Context about the new update The above-mentioned version is newly released by the upstream project and not yet available as a recipe....

upstream update

## Expected Behavior CMakeLists.txt: ``` cmake_minimum_required(VERSION 3.19) project(my_hpx) find_package(HPX REQUIRED) add_executable(my_hpx main.cpp) target_link_libraries(my_hpx HPX::hpx HPX::wrap_main HPX::iostreams_component) ``` main.cpp: ``` #include #include int main() { hpx::cout

type: defect
platform: Mac OSX

## Actual Behavior In [the actual signature](https://github.com/STEllAR-GROUP/hpx/blob/master/libs/full/collectives/include/hpx/collectives/gather.hpp#L355) of `hpx::collectives::gather_there`: ```c template hpx::future gather_there(communicator fid, T&& local_result, this_site_arg this_site = this_site_arg(), generation_arg generation = generation_arg()) ``` the return type differs from...

category: documentation
type: defect