blob: 6fdc4d149c5025f39363d37d2738d981757df0d0 [file] [log] [blame]
Carl Shapiro69759ea2011-07-21 18:13:35 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2// Author: cshapiro@google.com (Carl Shapiro)
3
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07004#include "offsets.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -07005
6#include <iostream> // NOLINT
7
8namespace art {
9
10std::ostream& operator<<(std::ostream& os, const Offset& offs) {
11 return os << offs.Int32Value();
12}
13
14}