Ignore:
Timestamp:
Jan 31, 2008, 6:46:41 PM (16 years ago)
Author:
rosiere
Message:

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/ToBase2.h

    r43 r75  
    1010
    1111#include <sstream>
    12 using namespace std;
    1312
    1413namespace morpheo              {
     
    1615  template<typename T> inline std::string toBase2 (const T& value, const uint32_t & size)
    1716  {
    18     ostringstream res;
     17    std::ostringstream res;
    1918    T mask = 1<<(size-1);
    2019   
Note: See TracChangeset for help on using the changeset viewer.