Automated update

This commit is contained in:
briano%netscape.com 1999-03-04 22:30:40 +00:00
parent b6e4dd1d04
commit ef8e3374f1

2
configure vendored
View File

@ -5911,7 +5911,7 @@ else
struct X { int i; };
struct Y { int i; };
int main() {
X x; Y*y = reinterpret_cast<Y*>(&x);
X x; X*const z = &x;Y*y = reinterpret_cast<Y*>(z);
; return 0; }
EOF
if { (eval echo configure:5918: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then