Commit 69aa532b authored by Andrew Krieger's avatar Andrew Krieger Committed by Facebook Github Bot

std::make_from_tuple is VS2017+

Summary: It's not available in VS2015u3.

Reviewed By: yfeldblum

Differential Revision: D7005874

fbshipit-source-id: 5477018e444d9bf118089bbbcfabbbf4e16a3198
parent 2a7f29f5
......@@ -152,7 +152,7 @@ auto uncurry(F&& f)
std::forward<F>(f));
}
#if __cpp_lib_make_from_tuple || _MSC_VER
#if __cpp_lib_make_from_tuple || _MSC_VER >= 1910
/* using override */ using std::make_from_tuple;
......
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