# HG changeset patch # User Paper # Date 1699485236 18000 # Node ID a66c47c1ba3c6e24b78fee8273fd2d8a8c364114 # Parent 275da698697da09ea5b640d6d118a4bceb005c2c ini: remove unused ini.cc file diff -r 275da698697d -r a66c47c1ba3c src/core/ini.cc --- a/src/core/ini.cc Wed Nov 08 18:13:37 2023 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -#include "core/ini.h" - -namespace INI { - -/* this should be in some ini.cc or whatever */ -std::string GetIniString(const mINI::INIStructure& ini, const std::string& section, - const std::string& value, const std::string& def) { - if (!ini.has(section) || !ini.get(section).has(value)) - return def; - return ini.get(section).get(value); // ack -} - -} \ No newline at end of file