0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 11:18:51 +02:00

ircd::info: Remove tc_version.

This commit is contained in:
Jason Volk 2019-05-31 15:00:39 -07:00
parent 0a225085b3
commit 36fbedec14
2 changed files with 0 additions and 17 deletions

View file

@ -20,7 +20,6 @@ extern "C" const char *const ircd_version;
namespace ircd::info
{
struct line;
struct tc_version;
struct versions;
// Build information

View file

@ -226,22 +226,6 @@ ircd_name
// Third party dependency information
//
/// Provides tcmalloc version information if tcmalloc is linked in to IRCd.
struct ircd::info::tc_version
{
int major{0}, minor{0};
char patch[64] {0};
std::string version {"unavailable"};
}
const ircd::info::tc_version;
/*
const char* tc_version(int* major, int* minor, const char** patch);
ircd::tc_version::tc_version()
:version{::tc_version(&major, &minor, reinterpret_cast<const char **>(&patch))}
{}
*/
decltype(ircd::info::glibc_version)
ircd::info::glibc_version
{