1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +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:
Tom Lane 2018-05-02 00:25:35 -04:00
parent 6fe25c1358
commit fe4ecd08d8

View File

@ -1980,7 +1980,8 @@ evalStandardFunc(TState *thread, CState *st,
} }
} }
break; /* NOTREACHED */ Assert(0);
return false; /* NOTREACHED */
} }
/* integer bitwise operators */ /* integer bitwise operators */