mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Changed: #1272 Fixed compilation with GCC 4.6 (patch provided by Naush)
This commit is contained in:
parent
14622fdf7d
commit
abdd31fa8c
7 changed files with 8 additions and 1 deletions
|
@ -34,6 +34,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
|
||||
|
||||
|
|
|
@ -52,10 +52,11 @@ struct CCyclicActionInfos
|
|||
TDataSetRow TargetRowId;
|
||||
std::vector<NLMISC::CSheetId> CyclicActionBricks;
|
||||
|
||||
CCyclicActionInfos() { }
|
||||
inline void reset() { CyclicActionBricks.clear(); }
|
||||
};
|
||||
|
||||
static const CCyclicActionInfos NoCyclicInfo;
|
||||
static const CCyclicActionInfos NoCyclicInfo = CCyclicActionInfos();
|
||||
|
||||
class CPhraseManager;
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <libxml/parser.h>
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
#include <time.h>
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <string>
|
||||
#include <time.h>
|
||||
#include <vector>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "nel/georges/load_form.h"
|
||||
#include "nel/georges/u_form.h"
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
#include <time.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue