Replace use of 'typedef' by 'using'

Issue #5227
This commit is contained in:
Norman Feske
2024-06-28 17:20:59 +02:00
parent 361557e1f0
commit 19c13877ca
442 changed files with 1306 additions and 1349 deletions

View File

@ -32,9 +32,9 @@ namespace Ctf {
struct Extension : Bitfield<_PWIDTH, 64-_PWIDTH> { };
};
typedef _Timestamp<sizeof(Trace::Timestamp)*8> Timestamp;
using Timestamp = _Timestamp<sizeof(Trace::Timestamp)*8>;
typedef uint64_t __attribute__((aligned(1))) Timestamp_base;
using Timestamp_base = uint64_t __attribute__((aligned(1)));
}
#endif /* _CTF__TIMESTAMP_H_ */