blob: 1dce268e891a4fda669af5272dc4de9a912cd4e5 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
// Author: cshapiro@google.com (Carl Shapiro)
#include "src/offsets.h"
#include <iostream> // NOLINT
namespace art {
std::ostream& operator<<(std::ostream& os, const Offset& offs) {
return os << offs.Int32Value();
}
}