mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
long int overload to make Kayvan's compiler happy.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6960 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9a3ed31897
commit
33df766284
@ -1,3 +1,8 @@
|
||||
|
||||
2003-05-12 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* tostr.[Ch]: add long int overload
|
||||
|
||||
2003-05-12 Alfredo Braunstein <abraunst@libero.it>
|
||||
|
||||
* lstrings.[Ch]: compile fix
|
||||
|
@ -18,6 +18,14 @@ string const tostr(unsigned int i)
|
||||
}
|
||||
|
||||
|
||||
string const tostr(long int i)
|
||||
{
|
||||
ostringstream os;
|
||||
os << i;
|
||||
return STRCONV(os.str());
|
||||
}
|
||||
|
||||
|
||||
string const tostr(double d)
|
||||
{
|
||||
ostringstream os;
|
||||
|
@ -28,6 +28,8 @@ string const tostr(int);
|
||||
///
|
||||
string const tostr(unsigned int);
|
||||
///
|
||||
string const tostr(long int);
|
||||
///
|
||||
string const tostr(double);
|
||||
///
|
||||
string const tostr(string const & s);
|
||||
|
Loading…
Reference in New Issue
Block a user