Changeset 11 for sources/src
- Timestamp:
- Jan 21, 2009, 7:53:09 PM (16 years ago)
- Location:
- sources/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/src/internal.h
r1 r11 15 15 #include "internal_ext.h" 16 16 #include <map> 17 #include <string> 17 18 18 19 namespace sc_core { -
sources/src/sc_uint.h
r1 r11 18 18 #include <sc_logic.h> 19 19 #include <sc_bv.h> 20 #include <cstdlib> 20 21 21 22 // ---------------------------------------------------------------------------- … … 126 127 sc_uint () { val = 0; } 127 128 // sc_uint (data_type val_) { val = 0; write (val_); } 128 sc_uint (const char *a) { val = 0; write ( atoi (a)); }129 sc_uint (const char *a) { val = 0; write (std::atoi (a)); } 129 130 sc_uint (unsigned short a){ val = 0; write (a); } 130 131 sc_uint (short a) { val = 0; write (a); }
Note: See TracChangeset
for help on using the changeset viewer.