Commit b8cf9bbc authored by coppro's avatar coppro

Removed function leftover from half-way through development

parent 9797dbda
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment