]> git.vpit.fr Git - perl/modules/VPIT-XSHelpers.git/commitdiff
C++ compilers are officially not supported
authorVincent Pit <perl@profvince.com>
Mon, 21 Dec 2015 14:30:58 +0000 (15:30 +0100)
committerVincent Pit <perl@profvince.com>
Mon, 21 Dec 2015 14:30:58 +0000 (15:30 +0100)
xsh/caps.h
xsh/mem.h
xsh/util.h

index 4559524863696f5c51f32a9a99fd224a10818b90..6c0b9446e218f8f5f5ac40fddaef490faec09972 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef XSH_CAPS_H
 #define XSH_CAPS_H 1
 
+#ifdef __cplusplus
+# error C++ compilers are not supported
+#endif
+
 #define XSH_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
 
 #define XSH_HAS_PERL_BRANCH(R, V, S) (PERL_REVISION == (R) && PERL_VERSION == (V) && PERL_SUBVERSION >= (S))
index 9b59a71eb82a44d2ca72fefc29e54936dc315618..e1b90b333688bd954e48d05f3ff32a6eeac02601 100644 (file)
--- a/xsh/mem.h
+++ b/xsh/mem.h
@@ -1,7 +1,7 @@
 #ifndef XSH_MEM_H
 #define XSH_MEM_H 1
 
-#include "util.h" /* VOID2(), XSH_ASSERT() */
+#include "util.h" /* XSH_ASSERT() */
 
 #ifdef DEBUGGING
 # ifdef Poison
@@ -72,13 +72,13 @@ static void *xsh_shared_alloc(pPMS_ size_t size) {
 
 #endif /* !XSH_HAS_POISON_NEW */
 
-#define XSH_SHARED_ALLOC(D, N, T) ((D) = VOID2(T *, xsh_shared_alloc((N) * sizeof(T))))
+#define XSH_SHARED_ALLOC(D, N, T) ((D) = xsh_shared_alloc((N) * sizeof(T)))
 
 /* ... xsh_shared_calloc() ................................................. */
 
 #define xsh_shared_calloc(C, S) PerlMemShared_calloc((C), (S))
 
-#define XSH_SHARED_CALLOC(D, N, T) ((D) = VOID2(T *, xsh_shared_calloc((N), sizeof(T))))
+#define XSH_SHARED_CALLOC(D, N, T) ((D) = xsh_shared_calloc((N), sizeof(T)))
 
 /* ... xsh_shared_free() ................................................... */
 
@@ -136,7 +136,7 @@ static void *xsh_shared_realloc(pPMS_ void *p, size_t old_size, size_t new_size)
 
 #endif /* !XSH_HAS_POISON_NEW || !XSH_HAS_POISON_FREE */
 
-#define XSH_SHARED_REALLOC(D, OL, NL, T) ((D) = VOID2(T *, xsh_shared_realloc((D), (OL) * sizeof(T), (NL) * sizeof(T))))
+#define XSH_SHARED_REALLOC(D, OL, NL, T) ((D) = xsh_shared_realloc((D), (OL) * sizeof(T), (NL) * sizeof(T)))
 
 /* ... xsh_shared_recalloc() ............................................... */
 
@@ -158,7 +158,7 @@ static void *xsh_shared_recalloc(pPMS_ void *p, size_t old_size, size_t new_size
  return q;
 }
 
-#define XSH_SHARED_RECALLOC(D, OL, NL, T) ((D) = VOID2(T *, xsh_shared_recalloc((D), (OL) * sizeof(T), (NL) * sizeof(T))))
+#define XSH_SHARED_RECALLOC(D, OL, NL, T) ((D) = xsh_shared_recalloc((D), (OL) * sizeof(T), (NL) * sizeof(T)))
 
 /* --- Interpreter-local memory -------------------------------------------- */
 
index c4be169306c4c7255a4dffb99f74e4471bf39a66..599dbf4407e4cd63fca47549e44e6dc1e04d21ee 100644 (file)
 # define XSH_ASSERT(C)
 #endif
 
-#undef VOID2
-#ifdef __cplusplus
-# define VOID2(T, P) static_cast<T>(P)
-#else
-# define VOID2(T, P) (P)
-#endif
-
 #ifndef STMT_START
 # define STMT_START do
 #endif