Skip to content

Commit

Permalink
Remove unused macros
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Jul 7, 2018
1 parent 609edd4 commit 7e80a85
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/ccutil/params.h
Expand Up @@ -285,18 +285,6 @@ tesseract::ParamsVectors *GlobalParams();
#define double_VAR(name,val,comment)\
tesseract::DoubleParam name(val,#name,comment,false,GlobalParams())

#define INT_INIT_VAR(name,val,comment)\
tesseract::IntParam name(val,#name,comment,true,GlobalParams())

#define BOOL_INIT_VAR(name,val,comment)\
tesseract::BoolParam name(val,#name,comment,true,GlobalParams())

#define STRING_INIT_VAR(name,val,comment)\
tesseract::StringParam name(val,#name,comment,true,GlobalParams())

#define double_INIT_VAR(name,val,comment)\
tesseract::DoubleParam name(val,#name,comment,true,GlobalParams())

#define INT_MEMBER(name, val, comment, vec)\
name(val, #name, comment, false, vec)

Expand Down

0 comments on commit 7e80a85

Please sign in to comment.