Commit 52a691fb authored by Nathan Bronson's avatar Nathan Bronson Committed by Facebook Github Bot

restrict memory_resource to >= c++17

Summary:
This diff restricts use of memory_resource to C++17 or later,
to avoid problems with compilation on some MSVC platforms.

Reviewed By: kevinhu88

Differential Revision: D15923470

fbshipit-source-id: 91b2446c096fbcb71c8bf5a0f1967bff4cbd1ce8
parent c8f7015f
......@@ -16,7 +16,7 @@
#pragma once
#ifdef __has_include
#if defined(__has_include) && __cplusplus >= 201703L
#if __has_include(<memory_resource>)
......
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