aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/numeric/int128.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2017-11-07 04:53:20 -0800
committerGravatar katzdm <katzdm@google.com>2017-11-07 11:03:01 -0500
commitee2e3f667fca30b2cc754d560052204090e2a402 (patch)
tree4bd839ef9bed849679a110f5b11ec4539fcf1c22 /absl/numeric/int128.h
parent075cf62092b39b640798f70bf7d16b6c82ca2842 (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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/absl/numeric/int128.h b/absl/numeric/int128.h
index ecd6b37..a2ca29a 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_