CBHXuTT

Results 2 issues of CBHXuTT

On the ios, the Release static library is about 40+MB, it's too big. Is there any way to cut the size of the static library?

1. `__VA_ARGS__ `在windows上visual studio上不能正确展开,只能被识别为一个参数。 1)可以在cmake中添加`set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:preprocessor")`,但是会带来一些警告。 2)通过宏`#define EXPAND( ... ) __VA_ARGS__`再转一层可以解决。 2. ```c++ template int register_handler(Self&& self, std::string const& name, const Function& f) { register_handler(name, f, &self); return 0;...