From b0f66cc8eb283e2e8dd2e7e04008ac6166fa2a31 Mon Sep 17 00:00:00 2001 From: Jens Gerlach Date: Fri, 23 Oct 2015 14:07:48 +0200 Subject: [PATCH] use typedef instead of define to introduce 'intvec' --- src/util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index b0870c529..284c6e0b6 100644 --- a/src/util.h +++ b/src/util.h @@ -35,7 +35,8 @@ #include #include #include -#define intvec std::vector + +typedef std::vector intvec; std::string gensym(const char *basename); std::string gensym(const std::string &basename);