lgtm
https://codereview.chromium.org/19671009/diff/1/src/checks.h
File src/checks.h (left):
https://codereview.chromium.org/19671009/diff/1/src/checks.h#oldcode236
src/checks.h:236: (defined(__has_feature) &&
__has_feature(cxx_static_assert)) || \
If the need for the additional terms of the disjunction comes up again,
we could do it differently:
#if _cplusplus >= 201103L
#define HAS_STATIC_ASSERT 1
#endif
#if defined(__has_feature)
#if __has_feature(cxx_static_assert)
#define HAS_STATIC_ASSERT 1
#endif
#endif
...
(same for cxx_static_assert)
(use HAS_STATIC_ASSERT below)
https://codereview.chromium.org/19671009/
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.