forked from mirror/openmw-tes3mp
Merge pull request #1698 from Capostrophic/c++11
A bunch of C++11-related updates
This commit is contained in:
commit
0fc198be52
3 changed files with 6 additions and 15 deletions
|
@ -61,12 +61,7 @@ CSMDoc::OperationHolder *CSMTools::Tools::getVerifier()
|
|||
connect (&mVerifier, SIGNAL (reportMessage (const CSMDoc::Message&, int)),
|
||||
this, SLOT (verifierMessage (const CSMDoc::Message&, int)));
|
||||
|
||||
std::vector<std::string> mandatoryIds; // I want C++11, damn it!
|
||||
mandatoryIds.push_back ("Day");
|
||||
mandatoryIds.push_back ("DaysPassed");
|
||||
mandatoryIds.push_back ("GameHour");
|
||||
mandatoryIds.push_back ("Month");
|
||||
mandatoryIds.push_back ("PCRace");
|
||||
std::vector<std::string> mandatoryIds {"Day", "DaysPassed", "GameHour", "Month", "PCRace"};
|
||||
|
||||
mVerifierOperation->appendStage (new MandatoryIdStage (mData.getGlobals(),
|
||||
CSMWorld::UniversalId (CSMWorld::UniversalId::Type_Globals), mandatoryIds));
|
||||
|
|
|
@ -764,10 +764,8 @@ std::vector< CSMWorld::UniversalId > CSVWorld::Table::getDraggedRecords() const
|
|||
QModelIndexList selectedRows = selectionModel()->selectedRows();
|
||||
std::vector<CSMWorld::UniversalId> idToDrag;
|
||||
|
||||
foreach (QModelIndex it, selectedRows) //I had a dream. Dream where you could use C++11 in OpenMW.
|
||||
{
|
||||
for (QModelIndex& it : selectedRows)
|
||||
idToDrag.push_back (getUniversalId (it.row()));
|
||||
}
|
||||
|
||||
return idToDrag;
|
||||
}
|
||||
|
|
|
@ -66,10 +66,8 @@ TEST(EsmFixedString, struct_size)
|
|||
|
||||
TEST(EsmFixedString, DISABLED_is_pod)
|
||||
{
|
||||
/* TODO: enable in C++11
|
||||
* ASSERT_TRUE(std::is_pod<ESM::NAME>::value);
|
||||
* ASSERT_TRUE(std::is_pod<ESM::NAME32>::value);
|
||||
* ASSERT_TRUE(std::is_pod<ESM::NAME64>::value);
|
||||
* ASSERT_TRUE(std::is_pod<ESM::NAME256>::value);
|
||||
*/
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME32>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME64>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME256>::value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue