Deleted Added
sdiff udiff text old ( 13856:c4a7f25aacb4 ) new ( 13860:8f8df5b68439 )
full compact
1/*
2 * Copyright (c) 2011-2019 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 382 unchanged lines hidden (view full) ---

391
392std::string
393Packet::print() const {
394 std::ostringstream str;
395 print(str);
396 return str.str();
397}
398
399Packet::PrintReqState::PrintReqState(std::ostream &_os, int _verbosity)
400 : curPrefixPtr(new std::string("")), os(_os), verbosity(_verbosity)
401{
402 labelStack.push_back(LabelStackEntry("", curPrefixPtr));
403}
404
405Packet::PrintReqState::~PrintReqState()
406{

--- 53 unchanged lines hidden ---