diff options
author | Hyun <wxilas21@outlook.com> | 2022-08-10 15:29:16 +0900 |
---|---|---|
committer | wxila@DESKTOP-CM12JL4.(none) <wxilas21@gmail.com> | 2022-08-10 16:06:37 +0900 |
commit | 634311e6d2dc008dfee8fe3f9e6671af7c131431 (patch) | |
tree | d39ec5d89c7451b89494d0d5530259f497e9bf49 | |
parent | 6d806da76f9dff9c21729f850c6b0e5e727a4281 (diff) |
- Fix deprecated header in visual studio version 17.3.0 C++20
-rw-r--r-- | absl/base/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/options.h b/absl/base/options.h index 230bf1ee..cc47236a 100644 --- a/absl/base/options.h +++ b/absl/base/options.h @@ -70,7 +70,7 @@ // Include a standard library header to allow configuration based on the // standard library in use. #ifdef __cplusplus -#include <ciso646> +#include <iso646.h> #endif // ----------------------------------------------------------------------------- |