3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Merge pull request #1964 from waywardmonkeys/remove-define-void

Remove unused DEFINE_VOID macro.
This commit is contained in:
Nikolaj Bjorner 2018-11-26 08:09:36 -08:00 committed by GitHub
commit a83097d5cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,3 @@ Copyright (c) 2015 Microsoft Corporation
#ifndef DEFINE_TYPE #ifndef DEFINE_TYPE
#define DEFINE_TYPE(T) typedef struct _ ## T *T #define DEFINE_TYPE(T) typedef struct _ ## T *T
#endif #endif
#ifndef DEFINE_VOID
#define DEFINE_VOID(T) typedef void* T
#endif