mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 10:27:35 +08:00
Fix compiler warning on Windows.
Commit 41c912cad caused MSVC to complain that not all control paths return a value. Thomas Munro Discussion: https://postgr.es/m/CAEepm%3D3%3DTDYEXUEcHpEx%2BTwc31wo7PA0oBAiNt6sWmq93MW02A%40mail.gmail.com
This commit is contained in:
@ -1980,7 +1980,8 @@ evalStandardFunc(TState *thread, CState *st,
|
||||
}
|
||||
}
|
||||
|
||||
break; /* NOTREACHED */
|
||||
Assert(0);
|
||||
return false; /* NOTREACHED */
|
||||
}
|
||||
|
||||
/* integer bitwise operators */
|
||||
|
||||
Reference in New Issue
Block a user