Jin Sun

Results 3 issues of Jin Sun

When i use `git flow hotfix finish v1.0`, the new created tag `v1.0` was merged into develop but not `hotfix/v1.0`

### specific_data.h ```c++ #pragma once #include "co_routine_specific.h" struct CoSd { int idx; }; void PrintData(const char* co_name); void* Co2Func(void* args); CO_ROUTINE_SPECIFIC(CoSd, __cosd); ``` ### specific_data.cc ```c++ #include "specific_data.h" #include #include...