1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0022972: Eliminate macro definitions that has compiler-provided analogs (WNT and so on)

1) Macro definition WNT replaced by _WIN32 and _MSC_VER for platform and compiler detection accordingly.
2) Macro definition LIN replaced by __linux__ macro.
3) Macro definition DEB replaced by OCCT_DEBUG macro.
This commit is contained in:
akz
2015-09-15 17:46:43 +03:00
committed by kgv
parent 28a73c1fe7
commit 57c28b6122
180 changed files with 370 additions and 411 deletions

View File

@@ -60,7 +60,7 @@ static void LWrite(const TopoDS_Shape& shape,
{
char buf[256];
if(strlen(filename) > 256) return;
#if defined WNT
#if defined _MSC_VER
strcpy_s (buf, filename);
#else
strcpy (buf, filename);

View File

@@ -34,7 +34,7 @@ static void WriteS(const TopoDS_Shape& shape,
{
char buf[256];
if(strlen(filename) > 255) return;
#ifdef WNT
#ifdef _MSC_VER
strcpy_s (buf, filename);
#else
strcpy (buf, filename);

View File

@@ -61,7 +61,7 @@ static void Write(const TopoDS_Shape& shape,
{
char buf[256];
if(strlen(filename) > 255) return;
#if defined WNT
#if defined _MSC_VER
strcpy_s (buf, filename);
#else
strcpy (buf, filename);