Hans
Results
1
issues of
Hans
编译报错
1
template inline void bind_field(Command& command, size_t index, T& value) { bind_field(command, index, std::forward(value)); } template inline void bind_field(Command& command, const char* name, T& value) { size_t index=command.find_field(name); if(index==-1) value=T(); else...