Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies and clean up deprecations #249

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/dhtnode/storage/tokyocabinet/c/tcmdb.d
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ TCMDB* tcmdbnew2(uint bnum);

void tcmdbdel(TCMDB* mdb);

void tcmdbput(TCMDB* mdb, in void* kbuf, int ksiz, in void* vbuf, int vsiz);
void tcmdbput(TCMDB* mdb, scope const(void)* kbuf, int ksiz, scope const(void)* vbuf, int vsiz);

void tcmdbput2(TCMDB* mdb, char* kstr, char* vstr);

Expand All @@ -50,15 +50,15 @@ void tcmdbputcat(TCMDB* mdb, void* kbuf, int ksiz, void* vbuf, int vsiz);

void tcmdbputcat2(TCMDB* mdb, char* kstr, char* vstr);

bool tcmdbout(TCMDB* mdb, in void* kbuf, int ksiz);
bool tcmdbout(TCMDB* mdb, scope const(void)* kbuf, int ksiz);

bool tcmdbout2(TCMDB* mdb, char* kstr);

void* tcmdbget(TCMDB* mdb, in void* kbuf, int ksiz, int* sp);
void* tcmdbget(TCMDB* mdb, scope const(void)* kbuf, int ksiz, int* sp);

char* tcmdbget2(TCMDB* mdb, in char* kstr);
char* tcmdbget2(TCMDB* mdb, scope const(char)* kstr);

int tcmdbvsiz(TCMDB* mdb, in void* kbuf, int ksiz);
int tcmdbvsiz(TCMDB* mdb, scope const(void)* kbuf, int ksiz);

int tcmdbvsiz2(TCMDB* mdb, char* kstr);

Expand Down Expand Up @@ -95,9 +95,9 @@ void tcmdbputcat3(TCMDB* mdb, void* kbuf, int ksiz, void* vbuf, int vsiz);
bool tcmdbputproc(TCMDB* mdb, void* kbuf, int ksiz, void* vbuf, int vsiz,
scope TCPDPROC proc, void* op);

void* tcmdbget3(TCMDB* mdb, in void* kbuf, int ksiz, int* sp);
void* tcmdbget3(TCMDB* mdb, scope const(void)* kbuf, int ksiz, int* sp);

void tcmdbiterinit2(TCMDB* mdb, in void* kbuf, int ksiz);
void tcmdbiterinit2(TCMDB* mdb, scope const(void)* kbuf, int ksiz);

void tcmdbiterinit3(TCMDB* mdb, char* kstr);

Expand Down
2 changes: 1 addition & 1 deletion submodules/swarm
2 changes: 1 addition & 1 deletion submodules/turtle
Loading