blob: 49e52fbabf5f425ea77c124e42564b9a97ba9c07 [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();
}
} // namespace art