summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-07-14 18:15:39 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-07-14 18:17:33 +0200
commit06a3777d73401a1a601bcc75e02162c8c0744e34 (patch)
tree2d73d71a9ac56b58d4b8dd95153c6f2b72353319 /installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z
parent08d39e88de6adf8de7ac627a983db2a5eb65d1bd (diff)
removed or disabled most warnings
Diffstat (limited to 'installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z')
-rw-r--r--installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zExtract.cpp5
-rw-r--r--installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandler.cpp4
-rw-r--r--installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandlerOut.cpp4
3 files changed, 13 insertions, 0 deletions
diff --git a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zExtract.cpp b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zExtract.cpp
index 06e9ef979..1e8949ef7 100644
--- a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zExtract.cpp
+++ b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zExtract.cpp
@@ -12,6 +12,11 @@
#include "../../Common/ProgressUtils.h"
#include "../../Common/LimitedStreams.h"
+#ifdef _MSC_VER
+#pragma warning(disable:4297)
+#endif
+
+
namespace NArchive {
namespace N7z {
diff --git a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandler.cpp b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandler.cpp
index 6f0cf6b2d..2eeb93052 100644
--- a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandler.cpp
+++ b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandler.cpp
@@ -22,6 +22,10 @@
#endif
#endif
+#ifdef _MSC_VER
+#pragma warning(disable:4297)
+#endif
+
using namespace NWindows;
extern UString ConvertMethodIdToString(UInt64 id);
diff --git a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandlerOut.cpp b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandlerOut.cpp
index e2c250ab6..3c717116a 100644
--- a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandlerOut.cpp
+++ b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/7z/7zHandlerOut.cpp
@@ -16,6 +16,10 @@
#include "7zOut.h"
#include "7zUpdate.h"
+#ifdef _MSC_VER
+#pragma warning(disable:4297)
+#endif
+
using namespace NWindows;
namespace NArchive {