Commit 0f877ebd authored by Dan Melnic's avatar Dan Melnic Committed by Facebook GitHub Bot

Fix C++20 build

Summary: Fix C++20 build

Reviewed By: ispeters

Differential Revision: D31785835

fbshipit-source-id: ecfa717787546048c422084785b51e0f7d8eaa26
parent 5bbfb175
......@@ -54,6 +54,9 @@ async::Async<std::tuple<int, float, std::string>> getTuple() {
}
struct NonCopyableNonMoveable {
constexpr NonCopyableNonMoveable() noexcept = default;
~NonCopyableNonMoveable() = default;
NonCopyableNonMoveable(const NonCopyableNonMoveable&) = delete;
NonCopyableNonMoveable(NonCopyableNonMoveable&&) = delete;
NonCopyableNonMoveable& operator=(NonCopyableNonMoveable const&) = delete;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment