1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-10 10:30:27 +00:00

- interim release w11a_V0.54 (untagged)

- add Nexys3 port of w11a
This commit is contained in:
Walter F.J. Mueller
2011-12-04 21:25:09 +00:00
parent d76323ec6c
commit f2d0f39621
89 changed files with 2895 additions and 239 deletions

View File

@@ -1,4 +1,4 @@
// $Id: RlinkAddrMap.cpp 375 2011-04-02 07:56:47Z mueller $
// $Id: RlinkAddrMap.cpp 434 2011-12-02 19:17:38Z mueller $
//
// Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
@@ -13,13 +13,14 @@
//
// Revision History:
// Date Rev Version Comment
// 2011-11-28 434 1.0.1 Print(): use proper cast for lp64 compatibility
// 2011-03-06 367 1.0 Initial version
// 2011-03-05 366 0.1 First draft
// ---------------------------------------------------------------------------
/*!
\file
\version $Id: RlinkAddrMap.cpp 375 2011-04-02 07:56:47Z mueller $
\version $Id: RlinkAddrMap.cpp 434 2011-12-02 19:17:38Z mueller $
\brief Implemenation of class RlinkAddrMap.
*/
@@ -157,7 +158,7 @@ size_t RlinkAddrMap::MaxNameLength() const
void RlinkAddrMap::Print(std::ostream& os, int ind) const
{
size_t maxlen = max(6u, MaxNameLength());
size_t maxlen = max(((size_t) 6), MaxNameLength());
RosFill bl(ind);
for (amap_cit_t it=fAddrMap.begin(); it!=fAddrMap.end(); it++) {