Skip to content
Extraits de code Groupes Projets
Valider 88017c88 rédigé par Khaled Hosny's avatar Khaled Hosny Validation de Thomas Goyne
Parcourir les fichiers

Fix build with latest Visual Studio

This fiixes:

error C2797: list initialization inside member initializer list or
non-static data member initializer is not implemented

http://msdn.microsoft.com/en-us/library/dn793970.aspx
parent 01401314
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -129,13 +129,13 @@ struct AssDialogueBase { ...@@ -129,13 +129,13 @@ struct AssDialogueBase {
/// Layer number /// Layer number
int Layer = 0; int Layer = 0;
/// Margins: 0 = Left, 1 = Right, 2 = Top (Vertical) /// Margins: 0 = Left, 1 = Right, 2 = Top (Vertical)
std::array<int, 3> Margin = {{0, 0, 0}}; std::array<int, 3> Margin = std::array<int, 3>{{ 0, 0, 0 }};
/// Starting time /// Starting time
agi::Time Start = 0; agi::Time Start = 0;
/// Ending time /// Ending time
agi::Time End = 5000; agi::Time End = 5000;
/// Style name /// Style name
boost::flyweight<std::string> Style{ "Default" }; boost::flyweight<std::string> Style = boost::flyweight<std::string>("Default");
/// Actor name /// Actor name
boost::flyweight<std::string> Actor; boost::flyweight<std::string> Actor;
/// Effect name /// Effect name
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter