Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
art
/
06b37d91bb3d543002b1aee9829691f5e8bebc7e
/
.
/
src
/
offsets.cc
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
();
}
}