CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-09-25 13:47:43 +02:00
parent 98a77dde00
commit eb021accd1
17 changed files with 86 additions and 65 deletions
+3 -3
View File
@@ -142,7 +142,7 @@ void throwEOFException(const char *msg, int e) {
}
/*************************************************************************
//
// varargs overloads
**************************************************************************/
template <>
@@ -166,7 +166,7 @@ void throwCantUnpack(const char *format, ...) {
}
/*************************************************************************
//
// util
**************************************************************************/
void assertFailed(const char *expr, const char *file, int line, const char *func) noexcept {
@@ -191,7 +191,7 @@ const char *prettyName(const char *n) noexcept {
n++;
else if (*n == ' ')
n++;
else if (strncmp(n, "class ", 6) == 0) // Visual C++
else if (strncmp(n, "class ", 6) == 0) // Visual C++ (msvc)
n += 6;
else
break;