Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | // Author: cshapiro@google.com (Carl Shapiro) | ||||
3 | |||||
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame^] | 4 | #include "offsets.h" |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 5 | |
6 | #include <iostream> // NOLINT | ||||
7 | |||||
8 | namespace art { | ||||
9 | |||||
10 | std::ostream& operator<<(std::ostream& os, const Offset& offs) { | ||||
11 | return os << offs.Int32Value(); | ||||
12 | } | ||||
13 | |||||
14 | } |