0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

ircd::info: Minor reorder declarations.

This commit is contained in:
Jason Volk 2019-09-07 14:02:51 -07:00
parent 9e5a670b95
commit 463570bef1

View file

@ -22,6 +22,18 @@ namespace ircd::info
struct line;
struct versions;
// Util
void dump();
// Primary information
extern const string_view name;
extern const string_view version;
extern const string_view user_agent;
extern const string_view server_agent;
// Extended information
extern const string_view credits[];
// Build information
extern const string_view tag;
extern const string_view branch;
@ -62,18 +74,6 @@ namespace ircd::info
extern const versions glibc_version_abi;
extern const versions glibcxx_version_api;
extern const versions sd6_version;
// Primary information
extern const string_view name;
extern const string_view version;
extern const string_view user_agent;
extern const string_view server_agent;
// Extended information
extern const string_view credits[];
// Util
void dump();
}
namespace ircd::info::hardware