@@ -287,4 +287,4 @@ // | ||
| // | ||
| #define ICE_STRING_VERSION "3.7.7" // "A.B.C", with A=major, B=minor, C=patch | ||
| #define ICE_INT_VERSION 30707 // AABBCC, with AA=major, BB=minor, CC=patch | ||
| #define ICE_STRING_VERSION "3.7.8" // "A.B.C", with A=major, B=minor, C=patch | ||
| #define ICE_INT_VERSION 30708 // AABBCC, with AA=major, BB=minor, CC=patch | ||
| #define ICE_SO_VERSION "37" // "ABC", with A=major, B=minor, C=patch | ||
@@ -291,0 +291,0 @@ |
@@ -10,4 +10,4 @@ // | ||
| #define ICE_VERSION 3,7,7,0 | ||
| #define ICE_STRING_VERSION "3.7.7\0" | ||
| #define ICE_VERSION 3,7,8,0 | ||
| #define ICE_STRING_VERSION "3.7.8\0" | ||
| #define ICE_SO_VERSION "37\0" | ||
@@ -14,0 +14,0 @@ #define ICE_COMPANY_NAME "ZeroC, Inc.\0" |
@@ -180,3 +180,3 @@ # Building Ice for C++ | ||
| ``` | ||
| make ICE_HOME=/opt/Ice-3.7.7 ICE_BIN_DIST=all | ||
| make ICE_HOME=/opt/Ice-3.7.8 ICE_BIN_DIST=all | ||
| ``` | ||
@@ -231,3 +231,3 @@ | ||
| Using the first Command Prompt produces `Win32` binaries by default, while | ||
| the second Command Promt produces `x64` binaries by default. | ||
| the second Command Prompt produces `x64` binaries by default. | ||
@@ -296,3 +296,3 @@ In the Command Prompt, change to the `cpp` subdirectory: | ||
| The solution provide a project for each Ice component and each component can be | ||
| built separatelly. When you build a component its dependencies are built | ||
| built separately. When you build a component its dependencies are built | ||
| automatically. | ||
@@ -324,3 +324,3 @@ | ||
| have built the Ice source with the same platform and configuration than you are | ||
| attemping to build the tests. | ||
| attempting to build the tests. | ||
@@ -564,3 +564,3 @@ For example to build the `Cpp11-Release/x64` tests you must have built first the | ||
| [1]: https://zeroc.com/downloads/ice | ||
| [2]: https://doc.zeroc.com/ice/3.7/release-notes/supported-platforms-for-ice-3-7-7 | ||
| [2]: https://doc.zeroc.com/ice/3.7/release-notes/supported-platforms-for-ice-3-7-8 | ||
| [3]: https://github.com/zeroc-ice/bzip2 | ||
@@ -567,0 +567,0 @@ [4]: https://libexpat.github.io |
@@ -37,6 +37,11 @@ // | ||
| sprintf_s(buf, sizeof(buf), "%I64d", val); | ||
| #elif defined(ICE_64) | ||
| #elif defined(__APPLE__) | ||
| // sprintf is deprecated with macOS Ventura | ||
| snprintf(buf, sizeof(buf), "%ld", val); // Avoids a format warning from GCC. | ||
| #else | ||
| # if defined(ICE_64) | ||
| sprintf(buf, "%ld", val); // Avoids a format warning from GCC. | ||
| #else | ||
| # else | ||
| sprintf(buf, "%lld", val); | ||
| # endif | ||
| #endif | ||
@@ -43,0 +48,0 @@ return string(buf); |
@@ -1194,7 +1194,7 @@ // | ||
| { | ||
| "alignas", "alignof", "and", "and_eq", "asm", "auto", "bit_and", "bit_or", "bool", "break", | ||
| "case", "catch", "char", "char16_t", "char32_t", "class", "compl", "const", "const_exptr", "const_cast", "continue", | ||
| "alignas", "alignof", "and", "and_eq", "asm", "auto", "bitand", "bitor", "bool", "break", | ||
| "case", "catch", "char", "char16_t", "char32_t", "class", "compl", "const", "const_cast", "constexpr", "continue", | ||
| "decltype", "default", "delete", "do", "double", "dynamic_cast", | ||
| "else", "enum", "explicit", "export", "extern", "false", "float", "for", "friend", | ||
| "goto", "if", "inline", "int", "long", "mutable", "namespace", "new", "noexcept", "not", "not_eq", | ||
| "goto", "if", "inline", "int", "long", "mutable", "namespace", "new", "noexcept", "not", "not_eq", "nullptr", | ||
| "operator", "or", "or_eq", "private", "protected", "public", "register", "reinterpret_cast", "requires", | ||
@@ -1201,0 +1201,0 @@ "return", "short", "signed", "sizeof", "static", "static_assert", "static_cast", "struct", "switch", |
@@ -55,2 +55,3 @@ /* | ||
| #include <Slice/MD5I.h> | ||
| #include <stdint.h> | ||
| #include <string.h> | ||
@@ -176,3 +177,3 @@ | ||
| */ | ||
| if (!((data - (const md5_byte_t *)0) & 3)) { | ||
| if (!((reinterpret_cast<uintptr_t>(data)) & 3)) { | ||
| /* data are properly aligned */ | ||
@@ -179,0 +180,0 @@ X = (const md5_word_t *)data; |
+1
-1
@@ -111,3 +111,3 @@ [](https://gitter.im/zeroc-ice/ice?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
| - [Ice Release Notes](https://doc.zeroc.com/rel/ice-releases/ice-3-7/ice-3-7-7-release-notes) | ||
| - [Ice Release Notes](https://doc.zeroc.com/rel/ice-releases/ice-3-7/ice-3-7-8-release-notes) | ||
| - [Ice Manual](https://doc.zeroc.com/ice/3.7/) |
+1
-1
| { | ||
| "name": "slice2js", | ||
| "version": "3.7.7", | ||
| "version": "3.7.8", | ||
| "description": "Ice Slice to JavaScript compiler", | ||
@@ -5,0 +5,0 @@ "homepage": "https://zeroc.com", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
2405745
0.11%