mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
Add missing convert<> specialization for unsigned long.
This is needed on OS X. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15323 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1271f473f0
commit
255501fa77
@ -82,6 +82,13 @@ string convert<string>(unsigned long ul)
|
||||
}
|
||||
|
||||
|
||||
template<>
|
||||
docstring convert<docstring>(unsigned long ul)
|
||||
{
|
||||
return lyx::from_ascii(lexical_cast<string>(ul));
|
||||
}
|
||||
|
||||
|
||||
template<>
|
||||
string convert<string>(long l)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user