0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-01 01:28:54 +02:00

ircd: Add portable __is_identifier(); add convenience typedef for long long.

This commit is contained in:
Jason Volk 2020-04-27 13:58:39 -07:00
parent 0f18b8dc8d
commit cefee45147
2 changed files with 7 additions and 0 deletions

View file

@ -22,6 +22,10 @@
#define __has_builtin(x) 0
#endif
#ifndef __is_identifier
#define __is_identifier(x) 0
#endif
//
// Common branch prediction macros
//

View file

@ -148,6 +148,9 @@ namespace std
namespace ircd
{
using longlong = long long;
using ulonglong = unsigned long long;
using std::get;
using std::end;
using std::begin;