mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-05 05:25:07 +00:00
Fix an MSVC warning about narrowing conversion.
This commit is contained in:
parent
170e2d11f5
commit
7fb1211306
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ int main(int argc, char** argv)
|
|||
cout << "This part is fine: " << string(line.begin(), end_it) << "\n";
|
||||
}
|
||||
// Get the line length (at least for the valid part)
|
||||
int length = utf8::distance(line.begin(), end_it);
|
||||
ptrdiff_t length = utf8::distance(line.begin(), end_it);
|
||||
cout << "Length of line " << line_count << " is " << length << "\n";
|
||||
|
||||
// Convert it to utf-16
|
||||
|
|
Loading…
Add table
Reference in a new issue