Changeset 59 for sources/src/sc_bv.h


Ignore:
Timestamp:
Feb 6, 2017, 11:35:42 AM (7 years ago)
Author:
meunier
Message:
  • Fixed memory leaks
  • Fixed indentation in some files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/src/sc_bv.h

    r52 r59  
    1717//
    1818// ----------------------------------------------------------------------------
     19
     20//#include <stdint.h>
    1921
    2022#include "sc_nbdefs.h"
     
    4143    sc_bv_base & operator = (const sc_unsigned & a);
    4244    sc_bv_base & operator = (const sc_signed & a);
     45    sc_bv_base & operator = (unsigned int a);
    4346    sc_bv_base & operator = (unsigned long a);
    4447    sc_bv_base & operator = (long a);
    45     sc_bv_base & operator = (unsigned int a);
    4648    sc_bv_base & operator = (int a);
    4749    sc_bv_base & operator = (uint64 a);
     
    6668    sc_bv (const sc_unsigned & a);
    6769    sc_bv (const sc_signed & a);
     70    sc_bv (unsigned int a);
    6871    sc_bv (unsigned long a);
    6972    sc_bv (long a);
    70     sc_bv (unsigned int a);
    7173    sc_bv (int a);
    7274    sc_bv (uint64 a);
     
    8284    sc_bv < W > & operator = (const sc_unsigned & a);
    8385    sc_bv < W > & operator = (const sc_signed & a);
     86    sc_bv < W > & operator = (unsigned int a);
    8487    sc_bv < W > & operator = (unsigned long a);
    8588    sc_bv < W > & operator = (long a);
    86     sc_bv < W > & operator = (unsigned int a);
    8789    sc_bv < W > & operator = (int a);
    8890    sc_bv < W > & operator = (uint64 a);
Note: See TracChangeset for help on using the changeset viewer.