Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make with one argument able to be call
Browse files Browse the repository at this point in the history
Coldwings authored and lihuiba committed Dec 27, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 54a6d1d commit 6cd54a2
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
@@ -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);
}

0 comments on commit 6cd54a2

Please sign in to comment.