From 3c34cb7111a376d9b47fbc86373d2540b5368b6d Mon Sep 17 00:00:00 2001 From: Doug McLain Date: Wed, 26 Apr 2006 00:18:06 +0000 Subject: [PATCH] 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 --- libs/pbd3/convert.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/pbd3/convert.cc b/libs/pbd3/convert.cc index 0b3d3e1db9..60d39c91e2 100644 --- a/libs/pbd3/convert.cc +++ b/libs/pbd3/convert.cc @@ -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