1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 03:39:14 +00:00

For compiling in Windows with MSVC.

This commit is contained in:
cc9cii 2014-08-27 21:25:47 +10:00
parent 0b3e2775a0
commit 7ff1136d81

View File

@ -39,7 +39,7 @@ struct RecordFactoryEntry {
static std::pair<std::string,RecordFactoryEntry> makeEntry(std::string recName, Record* (*create_t) (), RecordType type) static std::pair<std::string,RecordFactoryEntry> makeEntry(std::string recName, Record* (*create_t) (), RecordType type)
{ {
RecordFactoryEntry anEntry = {create_t,type}; RecordFactoryEntry anEntry = {create_t,type};
return std::make_pair<std::string,RecordFactoryEntry>(recName, anEntry); return std::make_pair(recName, anEntry);
} }
///These are all the record types we know how to read. ///These are all the record types we know how to read.