Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix compilation errors via clang-15.#48

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
sokolcati merged 1 commit intomasterfromPGPRO-8962
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes fromall 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
[PGPRO-8962] Fix compilation errors via clang-15.
1) remove unused variable2) suppress error about unused yynerr (bison variable)Tags: jsquery.
  • Loading branch information
Ekaterina Sokolova committedOct 11, 2023
commite76dfbfaa40d8e87116588dfa4c53e7fc552e953
2 changes: 0 additions & 2 deletionsjsonb_gin_ops.c
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -173,7 +173,6 @@ get_bloom_value(uint32 hash)
staticuint32
get_path_bloom(PathHashStack*stack)
{
inti=0;
uint32res=0,val;

while (stack)
Expand All@@ -183,7 +182,6 @@ get_path_bloom(PathHashStack *stack)
val=get_bloom_value(hash);

res |=val;
i++;
stack=stack->parent;
}
returnres;
Expand Down
5 changes: 4 additions & 1 deletionjsquery_gram.y
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -254,7 +254,10 @@ makeItemList(List *list) {
%%

result:
expr{ *result =$1; }
expr{
*result =$1;
(void)yynerrs;/* suppress compiler warning*/
}
|/* EMPTY*/{ *result =NULL; }
;

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp