mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
handle missing switch case in cell::to_string
This commit is contained in:
parent
1709899373
commit
84a6fdcc14
|
@ -669,6 +669,7 @@ std::string cell::to_string() const
|
||||||
{
|
{
|
||||||
case cell::type::empty:
|
case cell::type::empty:
|
||||||
return "";
|
return "";
|
||||||
|
case cell::type::date:
|
||||||
case cell::type::number:
|
case cell::type::number:
|
||||||
return nf.format(value<long double>(), base_date());
|
return nf.format(value<long double>(), base_date());
|
||||||
case cell::type::inline_string:
|
case cell::type::inline_string:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user