Skip to content

Commit

Permalink
use typedef instead of define to introduce 'intvec'
Browse files Browse the repository at this point in the history
  • Loading branch information
jensgerlach committed Oct 23, 2015
1 parent fe58118 commit b0f66cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util.h
Expand Up @@ -35,7 +35,8 @@
#include <string>
#include <vector>
#include <ostream>
#define intvec std::vector<int>

typedef std::vector<int> intvec;

std::string gensym(const char *basename);
std::string gensym(const std::string &basename);
Expand Down

0 comments on commit b0f66cc

Please sign in to comment.