Kaynağa Gözat

Merge pull request #396 from pschwartz/issue355

Fix #355 Added missing STL header includes.

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 yıl önce
ebeveyn
işleme
31bc55c5a5

+ 2 - 0
common/thorhelper/thorsoapcall.cpp

@@ -34,6 +34,8 @@
 #include <stdexcept>
 #endif
 
+#include <new>
+
 #define CONTENT_LENGTH "Content-Length: "
 
 unsigned soapTraceLevel = 1;

+ 3 - 0
ecl/eclagent/eclagent.cpp

@@ -51,11 +51,14 @@
 #include "roxiehelper.hpp"
 #include "jlzw.hpp"
 
+#include <new>
+
 #ifdef _USE_CPPUNIT
 #include <cppunit/extensions/TestFactoryRegistry.h>
 #include <cppunit/ui/text/TestRunner.h>
 #endif
 
+
 //#define LEAK_FILE         "c:\\leaks.txt"
 
 #define MONITOR_ECLAGENT_STATUS     

+ 1 - 0
esp/services/ws_ecl/ws_ecl_json.cpp

@@ -7,6 +7,7 @@
 //#include <locale.h>
 
 #include <vector>
+#include <clocale>
 
 #include "JSON_parser.h"
 

+ 2 - 0
thorlcr/slave/slave.cpp

@@ -36,6 +36,8 @@
 
 #include "slave.ipp"
 
+#include <new>
+
 #define FATAL_ACTJOIN_TIMEOUT (5*60*1000)
 
 activityslaves_decl CGraphElementBase *createSlaveContainer(IPropertyTree &xgmml, CGraphBase &owner, CGraphBase *resultsGraph);