diff options
author | Abseil Team <absl-team@google.com> | 2017-11-07T12·53-0800 |
---|---|---|
committer | katzdm <katzdm@google.com> | 2017-11-07T16·03-0500 |
commit | ee2e3f667fca30b2cc754d560052204090e2a402 (patch) | |
tree | 4bd839ef9bed849679a110f5b11ec4539fcf1c22 /absl/numeric/int128.h | |
parent | 075cf62092b39b640798f70bf7d16b6c82ca2842 (diff) |
Changes imported from Abseil "staging" branch:
- 3eaa80f3372d679f9c7ecd7661971d7a4ee3766a Include implementation files in header. by Alex Strelnikov <strel@google.com> GitOrigin-RevId: 3eaa80f3372d679f9c7ecd7661971d7a4ee3766a Change-Id: Ib77722fc43798a7321443eced4eb9da2b7e40064
Diffstat (limited to 'absl/numeric/int128.h')
-rw-r--r-- | absl/numeric/int128.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/absl/numeric/int128.h b/absl/numeric/int128.h index ecd6b371f7ea..a2ca29a03ad9 100644 --- a/absl/numeric/int128.h +++ b/absl/numeric/int128.h @@ -625,6 +625,12 @@ inline uint128& uint128::operator--() { return *this; } +#if defined(ABSL_HAVE_INTRINSIC_INT128) +#include "absl/numeric/int128_have_intrinsic.inc" +#else // ABSL_HAVE_INTRINSIC_INT128 +#include "absl/numeric/int128_no_intrinsic.inc" +#endif // ABSL_HAVE_INTRINSIC_INT128 + } // namespace absl #endif // ABSL_NUMERIC_INT128_H_ |