mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03: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