cleaned out idiotic commenting of FUNCDEF, which had been done when a strict compile
[feisty_meow.git] / nucleus / library / configuration / ini_configurator.cpp
index c65bdccabe30013cdb8ce66a1d184f7e808723be..8f66f01a2f128a3b41ee4cd0b59c4f5ff9618b20 100644 (file)
@@ -227,7 +227,7 @@ bool ini_configurator::delete_entry(const astring &section, const astring &ent)
 bool ini_configurator::put(const astring &section, const astring &entry,
     const astring &to_store)
 {
-///  FUNCDEF("put");
+  FUNCDEF("put");
   if (!to_store.length()) return delete_entry(section, entry);
   else if (!entry.length()) return delete_section(section);
   else if (!section.length()) return false;
@@ -259,7 +259,7 @@ bool ini_configurator::get(const astring &section, const astring &entry,
 
 bool ini_configurator::get_section(const astring &section, string_table &info)
 {
-///  FUNCDEF("get_section");
+  FUNCDEF("get_section");
 #ifndef __WIN32__
   return _parser->get_section(section, info);
 #else