blob: eeaee2f35dc2a1455604fbbc3526c13119d2e5eb [file] [log] [blame]
// Copyright 2004 Google Inc.
// All Rights Reserved.
//
//
#include <iostream>
using std::cout;
using std::endl;
#include "kudu/gutil/int128.h"
#include "kudu/gutil/integral_types.h"
const uint128_pod kuint128max = {
static_cast<uint64>(GG_LONGLONG(0xFFFFFFFFFFFFFFFF)),
static_cast<uint64>(GG_LONGLONG(0xFFFFFFFFFFFFFFFF))
};
std::ostream& operator<<(std::ostream& o, const uint128& b) {
return (o << b.hi_ << "::" << b.lo_);
}