13
0

added std:: to atoi and atof to fix namespace problem in convert.cc

git-svn-id: svn://localhost/trunk/ardour2@480 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Doug McLain 2006-04-26 00:18:06 +00:00
parent 9e88813d8f
commit 3c34cb7111

View File

@ -96,13 +96,13 @@ short_version (string orig, string::size_type target_length)
int
atoi (const string& s)
{
return atoi (s.c_str());
return std::atoi (s.c_str());
}
double
atof (const string& s)
{
return atof (s.c_str());
return std::atof (s.c_str());
}
vector<string>