remove typedef usage

(FIXME: revisit yes/no hacky implementation with c++11 features)
This commit is contained in:
artemp 2014-07-07 19:15:52 +01:00
parent fe215a684e
commit 4556921e9a

View file

@ -107,10 +107,8 @@ struct feature_style_processor<Processor>::symbol_dispatch : public boost::stati
proj_transform const& prj_trans_;
};
//using no_tag = char (**)[1];
//using yes_tag = char (**)[2];
typedef char (&no_tag)[1];
typedef char (&yes_tag)[2];
using no_tag = char (&)[1];
using yes_tag = char (&)[2];
template <typename T0, typename T1, void (T0::*)(T1 const&, mapnik::feature_impl &, proj_transform const&) >
struct process_memfun_helper {};