Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix some violations of warning undef in folly/lang/New.h
Summary: Tweaks for the following violations of warning `undef`: ``` folly/lang/New.h:86:5: error: '__cpp_sized_deallocation' is not defined, evaluates to 0 [-Werror,-Wundef] #if __cpp_sized_deallocation >= 201309L || (_CPPLIB_VER && !__clang__) ^ folly/lang/New.h:86:45: error: '_CPPLIB_VER' is not defined, evaluates to 0 [-Werror,-Wundef] #if __cpp_sized_deallocation >= 201309L || (_CPPLIB_VER && !__clang__) ^ folly/lang/New.h:106:5: error: '__cpp_sized_deallocation' is not defined, evaluates to 0 [-Werror,-Wundef] #if __cpp_sized_deallocation >= 201309L || (_CPPLIB_VER && !__clang__) ^ folly/lang/New.h:106:45: error: '_CPPLIB_VER' is not defined, evaluates to 0 [-Werror,-Wundef] #if __cpp_sized_deallocation >= 201309L || (_CPPLIB_VER && !__clang__) ^ ``` Reviewed By: Orvid Differential Revision: D46914069 fbshipit-source-id: d80cdf3c295d9dd14674a3e67ed790290f1973b5
- Loading branch information