mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
Fix for travis-ci failure - attempt 2
This commit is contained in:
parent
26aeeac1ce
commit
f36e041176
@ -60,7 +60,7 @@ namespace EQEmu
|
||||
};
|
||||
|
||||
static const ClientVersion LastClientVersion = ClientVersion::RoF2;
|
||||
static const size_t ClientVersionCount = (static_cast<unsigned int>(LastClientVersion) + 1);
|
||||
static const unsigned int ClientVersionCount = 8; //(static_cast<size_t>(LastClientVersion) + 1); - travis either doesn't like this or decl 'size_t'
|
||||
|
||||
extern bool IsValidClientVersion(ClientVersion client_version);
|
||||
extern ClientVersion ValidateClientVersion(ClientVersion client_version);
|
||||
|
||||
@ -20,7 +20,6 @@
|
||||
#ifndef COMMON_INVENTORY_VERSION_H
|
||||
#define COMMON_INVENTORY_VERSION_H
|
||||
|
||||
#include "types.h"
|
||||
#include "client_version.h"
|
||||
|
||||
|
||||
@ -45,7 +44,7 @@ namespace EQEmu
|
||||
static const InventoryVersion LastInventoryVersion = InventoryVersion::Pet;
|
||||
static const InventoryVersion LastPCInventoryVersion = InventoryVersion::RoF2;
|
||||
static const InventoryVersion LastNonPCInventoryVersion = InventoryVersion::Pet;
|
||||
static const size_t InventoryVersionCount = (static_cast<unsigned int>(LastInventoryVersion) + 1);
|
||||
static const unsigned int InventoryVersionCount = 12; //(static_cast<size_t>(LastInventoryVersion) + 1); - travis either doesn't like this or decl 'size_t'
|
||||
|
||||
extern bool IsValidInventoryVersion(InventoryVersion inventory_version);
|
||||
extern bool IsValidPCInventoryVersion(InventoryVersion inventory_version);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user