Commit 5b39da3f authored by Kosov Eugene's avatar Kosov Eugene Committed by facebook-github-bot-0

fixed build with g++ 5+ and ASAN enabled

Summary:
Fixing by deleting unnecessary macro checks - folly already requires at least g++4.8
Closes https://github.com/facebook/folly/pull/338

Reviewed By: yfeldblum

Differential Revision: D2742024

Pulled By: fredemmott

fb-gh-sync-id: c0ecc7edceeebd1f972b0be4f4740214211f1c24
parent 60345760
......@@ -119,8 +119,6 @@ namespace folly {
# endif
# endif
#elif defined (__GNUC__) && \
(__GNUC__ == 4) && \
(__GNUC_MINOR__ >= 8) && \
__SANITIZE_ADDRESS__
# define FBSTRING_DISABLE_ADDRESS_SANITIZER \
__attribute__((__no_address_safety_analysis__, __noinline__))
......
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