$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2008-04-21 16:59:52
Juergen Hunold:
> > Does
> >
> > struct timespec rqtp = {};
> >
> > still emit the warnings?
...
> Actually this gets worse :-((
Then we'll have to go with
- struct timespec rqtp = { 0 };
+ struct timespec rqtp = { 0, 0 };
and live with the redundant initializations. GCC can be pretty annoying at
times. Does anybody actually write {} by mistake? <rolls eyes> :-)