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