Codechange: remove transitional supports from the pool

This commit is contained in:
Rubidium
2025-02-08 08:47:44 +01:00
committed by rubidium42
parent 576a96c685
commit af00b835a1
29 changed files with 48 additions and 63 deletions

View File

@@ -22,7 +22,7 @@ using OrderBackupID = PoolID<uint8_t, struct OrderBackupIDTag, 255, 0xFF>;
struct OrderBackup;
/** The pool type for order backups. */
using OrderBackupPool = Pool<OrderBackup, OrderBackupID, 1, OrderBackupID::End().base()>;
using OrderBackupPool = Pool<OrderBackup, OrderBackupID, 1>;
/** The pool with order backups. */
extern OrderBackupPool _order_backup_pool;