13
0

removed long-ifdef'ed-out code

git-svn-id: svn://localhost/ardour2/branches/3.0@9129 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-03-12 20:24:32 +00:00
parent 58ce6c2bb7
commit 88d5649511

View File

@ -63,21 +63,6 @@ using namespace PBD;
string
legalize_for_path (const string& str)
{
#if OLD_SCHOOL_PROHIBITIVE
string::size_type pos;
string legal_chars = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_+=: ";
string legal;
legal = str;
pos = 0;
while ((pos = legal.find_first_not_of (legal_chars, pos)) != string::npos) {
legal.replace (pos, 1, "_");
pos += 1;
}
return legal;
#else
string::size_type pos;
string illegal_chars = "/\\"; /* DOS, POSIX. Yes, we're going to ignore HFS */
string legal;
@ -91,7 +76,6 @@ legalize_for_path (const string& str)
}
return legal;
#endif
}
string