mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd::info: Remove tc_version.
This commit is contained in:
parent
0a225085b3
commit
36fbedec14
2 changed files with 0 additions and 17 deletions
|
@ -20,7 +20,6 @@ extern "C" const char *const ircd_version;
|
|||
namespace ircd::info
|
||||
{
|
||||
struct line;
|
||||
struct tc_version;
|
||||
struct versions;
|
||||
|
||||
// Build information
|
||||
|
|
16
ircd/info.cc
16
ircd/info.cc
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue