Float should have a c++ param type

--HG--
extra : convert_revision : 150bbe7f31aafb43a75195fc2a365fb3c0ec5673
This commit is contained in:
Nathan Binkert
2007-05-11 11:48:58 -07:00
parent d667ce01b4
commit 113319a7da

View File

@@ -348,7 +348,7 @@ class UdpPort(CheckedInt): cxx_type = 'uint16_t'; size = 16; unsigned = True
class Percent(CheckedInt): cxx_type = 'int'; min = 0; max = 100
class Float(ParamValue, float):
pass
cxx_type = 'double'
class MemorySize(CheckedInt):
cxx_type = 'uint64_t'