added std:: to atoi and atof to fix namespace problem in convert.cc
authorDoug McLain <doug@nostar.net>
Wed, 26 Apr 2006 00:18:06 +0000 (00:18 +0000)
committerDoug McLain <doug@nostar.net>
Wed, 26 Apr 2006 00:18:06 +0000 (00:18 +0000)
git-svn-id: svn://localhost/trunk/ardour2@480 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/pbd3/convert.cc

index 0b3d3e1db90bce2647f69e941e2ee86b3c2e3c1e..60d39c91e2d675eff6825a3fd9931b9b2cf35c92 100644 (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>