Fix for #26; forgot the type specifier after LI (since the LI macro now requires a type after it, so it works for all types)
#15 (standardized output system using cout) will solve all these silly printf problems.
This commit is contained in:
@@ -264,7 +264,7 @@ success_t DatasetInfo::InitFromCsv(TextLineReader *reader,
|
||||
} else {
|
||||
for (index_t i = 0; i < headers.size(); i++) {
|
||||
String name;
|
||||
name.InitSprintf("feature%"LI, i);
|
||||
name.InitSprintf("feature%"LI"d", i);
|
||||
features_.PushBack().InitContinuous(name);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user