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 | |||||
4 | #include "src/offsets.h" | ||||
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 | } |