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