Commit fe4ecd08 authored by Tom Lane's avatar Tom Lane

Fix compiler warning on Windows.

Commit 41c912ca 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
parent 6fe25c13
......@@ -1980,7 +1980,8 @@ evalStandardFunc(TState *thread, CState *st,
}
}
break; /* NOTREACHED */
Assert(0);
return false; /* NOTREACHED */
}
/* integer bitwise operators */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment