We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e35a8cb commit c9f13d0Copy full SHA for c9f13d0
third_party/int128/int128.h
@@ -56,6 +56,10 @@ namespace large_int {
56
class alignas(sizeof(_Hi) * 2) int128_base final {
57
static_assert(sizeof(_Hi) == sizeof(_Low), "low type, high type should have same size");
58
59
+#if defined(__GNUC__) && __GNUC__ <= 6
60
+ public:
61
+#endif
62
+
63
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
64
_Low low_{};
65
_Hi high_{};
0 commit comments