View Issue Details

IDProjectCategoryView StatusLast Update
0001340Spring engineGeneralpublic2009-02-10 23:39
Reporterimbaczek Assigned ToAuswaschbar  
PrioritynormalSeveritycrashReproducibilityalways
Status resolvedResolutionfixed 
Product Version0.78.2.1+git 
Summary0001340: change %lu/%zu/size_t printing to be windows and word-size aware
Descriptioncurrently %zu is the best choice, except it doesn't work on windows at all. the remaining solutions are:

#ifdef printfs that print platform-dependent variables or
use operator<< to do the work for us.
TagsNo tags attached.
Checked infolog.txt for Errors

Activities

Auswaschbar

2009-02-10 23:38

reporter   ~0003275

It didn't even had proper operator<< overload.

To log something in a safe manned, you can now do:
LogObject() << "Some string " << myvector.size();
LogObject(MyLogSubsystem) << "Some string " << myvector.size();

Issue History

Date Modified Username Field Change
2009-02-09 01:05 imbaczek New Issue
2009-02-10 23:38 Auswaschbar Note Added: 0003275
2009-02-10 23:38 Auswaschbar Status new => resolved
2009-02-10 23:38 Auswaschbar Resolution open => fixed
2009-02-10 23:38 Auswaschbar Assigned To => Auswaschbar