mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
Fixed MSVC warnings.
warning C4099: 'ESM::ESMReader' : type name first seen using 'class' now seen using 'struct' warning C4099: 'ESM::CellId' : type name first seen using 'struct' now seen using 'class'
This commit is contained in:
parent
b0b275a936
commit
e02bab67ba
7 changed files with 7 additions and 7 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define OPENMW_ESSIMPORT_IMPORTDIAL_H
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace ESM
|
||||
{
|
||||
struct ESMReader;
|
||||
class ESMReader;
|
||||
}
|
||||
|
||||
namespace ESSImport
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace ESM
|
|||
{
|
||||
class ESMReader;
|
||||
class ESMWriter;
|
||||
class CellId;
|
||||
struct CellId;
|
||||
|
||||
/* Moved cell reference tracking object. This mainly stores the target cell
|
||||
of the reference, so we can easily know where it has been moved when another
|
||||
|
|
Loading…
Reference in a new issue