mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-21 06:37:42 +01:00
- remove temp files from repository
- add type cast to eliminate compile warning
This commit is contained in:
parent
ed93265588
commit
027dc6dd96
Binary file not shown.
Binary file not shown.
@ -84,7 +84,7 @@ std::string& SimpleRowFormatter::formatNames(const NameVecPtr pNames, std::strin
|
||||
_rowCount = 0;
|
||||
|
||||
std::ostringstream str;
|
||||
std::string line(_colWidth * pNames->size(), '-');
|
||||
std::string line(std::string::size_type(pNames->size() * _colWidth), '-');
|
||||
|
||||
NameVec::const_iterator it = pNames->begin();
|
||||
NameVec::const_iterator end = pNames->end();
|
||||
|
Loading…
x
Reference in New Issue
Block a user