Code Quality: Reverted uint32_t to unsigned int

Caused problem with boost python on some platforms but not others, no time to figure out why.
This commit is contained in:
Philippe Tillet
2016-10-03 02:53:47 -04:00
parent 31849794e8
commit fca79c317e
16 changed files with 155 additions and 155 deletions

View File

@@ -25,14 +25,14 @@
namespace isaac
{
kernel_generation_stream::kgenstream::kgenstream(std::ostringstream& oss,uint32_t const & tab_count) :
kernel_generation_stream::kgenstream::kgenstream(std::ostringstream& oss,unsigned int const & tab_count) :
oss_(oss), tab_count_(tab_count)
{ }
int kernel_generation_stream::kgenstream::sync()
{
for (uint32_t i=0; i<tab_count_;++i)
for (unsigned int i=0; i<tab_count_;++i)
oss_ << " ";
std::string next = str();
oss_ << next;