blob: 500e17e9f8b43fd9ee37eec0dc5b2d5ff8ce29c9 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#include "offsets.h"
#include <iostream> // NOLINT
namespace art {
std::ostream& operator<<(std::ostream& os, const Offset& offs) {
return os << offs.Int32Value();
}
}