Removed function leftover from half-way through development

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1389 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
coppro
2009-06-19 03:28:25 +00:00
parent b73f081b60
commit a44025b015
-6
View File
@@ -189,12 +189,6 @@ IMPLEMENT_REFLECTION(Set) {
REFLECT(apprentice_code);
}
// TODO: this function sucks
bool isnt_filename_safe (Char c) {
return !((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'z') ||
(c >= _('0') && c <= _('9')) || c == _(' '));
}
// TODO: make this a more generic function to be used elsewhere
template <typename Tag>
void Set::reflect_cards (Tag& tag) {