Skip to content

Instantly share code, notes, and snippets.

Created November 23, 2014 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a1307401316a0a164056 to your computer and use it in GitHub Desktop.
Save anonymous/a1307401316a0a164056 to your computer and use it in GitHub Desktop.
namespace std
{
template <>
std::string to_string(aur::kotor::key::KeyTableEntry entry)
{
std::stringstream ss;
ss << &entry.name[0] << ", " << entry.type << ", " << entry.ID << ", " << entry.flags;
return ss.str();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment