Skip to content

Commit

Permalink
Make with one argument able to be call
Browse files Browse the repository at this point in the history
  • Loading branch information
Coldwings authored and lihuiba committed Dec 30, 2024
1 parent 54a6d1d commit b799c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/rpc.h
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ namespace rpc
extern "C" Skeleton* new_skeleton(uint32_t pool_size = 128);

__attribute__((deprecated))
inline Skeleton* new_skeleton(bool /*concurrent*/, uint32_t pool_size = 128) {
inline Skeleton* new_skeleton(bool /*concurrent*/, uint32_t pool_size) {
return new_skeleton(pool_size);
}

Expand Down

0 comments on commit b799c1e

Please sign in to comment.