From 7ff1136d8173a4c95196b81d84a6862a87de2e5b Mon Sep 17 00:00:00 2001 From: cc9cii Date: Wed, 27 Aug 2014 21:25:47 +1000 Subject: [PATCH] For compiling in Windows with MSVC. --- components/nif/niffile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/nif/niffile.cpp b/components/nif/niffile.cpp index 14bb06f82..d53c7d865 100644 --- a/components/nif/niffile.cpp +++ b/components/nif/niffile.cpp @@ -39,7 +39,7 @@ struct RecordFactoryEntry { static std::pair makeEntry(std::string recName, Record* (*create_t) (), RecordType type) { RecordFactoryEntry anEntry = {create_t,type}; - return std::make_pair(recName, anEntry); + return std::make_pair(recName, anEntry); } ///These are all the record types we know how to read.