mirror of
https://github.com/g-truc/glm.git
synced 2025-04-10 07:18:54 +00:00
gne
This commit is contained in:
parent
68224bcc00
commit
a09e3fa10b
1 changed files with 2 additions and 2 deletions
|
@ -167,11 +167,11 @@ namespace detail
|
|||
{
|
||||
io::basic_state_saver<CTy> const bss(os);
|
||||
|
||||
os << std::fixed << std::right << std::setprecision(fmt.precision) << std::setfill(fmt.space) << fmt.delim_left;
|
||||
os << std::fixed << std::right << std::setprecision(static_cast<std::streamsize>(fmt.precision)) << std::setfill(fmt.space) << fmt.delim_left;
|
||||
|
||||
for(length_t i(0); i < components; ++i)
|
||||
{
|
||||
os << std::setw(fmt.width) << a[i];
|
||||
os << std::setw(static_cast<int>(fmt.width)) << a[i];
|
||||
if(components-1 != i)
|
||||
os << fmt.separator;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue