Jump to page: 1 2
Thread overview
Warnings
Jun 29, 2003
Matthew Wilson
Jun 29, 2003
Richard Grant
Jun 29, 2003
Matthew Wilson
Jun 29, 2003
Matthew Wilson
Jun 30, 2003
Wichetael
Jun 30, 2003
Matthew Wilson
Jul 01, 2003
Wichetael
Jul 01, 2003
Matthew Wilson
Jul 01, 2003
Greg Peet
Jul 01, 2003
Matthew Wilson
Jul 02, 2003
Greg Peet
Jul 02, 2003
Matthew Wilson
Jul 04, 2003
Walter
Jul 07, 2003
Greg Peet
Jul 07, 2003
Walter
June 29, 2003
I'm build with -wx, but am getting

"absolute_path_test\absolute_path_test.cpp(40) : Warning 18: implied return of __uninitialized_copy_aux at closing '}' does not return value"

which is killing my build. Without changing STLs or editing the STL that comes with the compiler, I need to get rid of this warning.

Is there a way to specify to the compiler to suppress certain warnings?

TAI

Matthew


June 29, 2003
In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...

>Is there a way to specify to the compiler to suppress certain warnings?

-w[errno]

like -w18

Richard


June 29, 2003
Brilliant.

Thanks for that. :)

(Another case of not seeing the wood for the trees, <blush>)

"Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...
>
> >Is there a way to specify to the compiler to suppress certain warnings?
>
> -w[errno]
>
> like -w18
>
> Richard
>
>



June 29, 2003
One other thing ... is there a way to do it in code?

Thanks

"Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...
>
> >Is there a way to specify to the compiler to suppress certain warnings?
>
> -w[errno]
>
> like -w18
>
> Richard
>
>


June 30, 2003
Uh, fix the code so that it always return a value... :p

Sorry, couldn't help myself...

Regards,
Remko van der Vossen

"Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> One other thing ... is there a way to do it in code?
>
> Thanks
>
> "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...
> >
> > >Is there a way to specify to the compiler to suppress certain warnings?
> >
> > -w[errno]
> >
> > like -w18
> >
> > Richard
> >
> >
>
>


June 30, 2003
Doing that in my own code doesn't help anyone who then uses the same makefiles for their own downloaded versions of DMC++, with the flawed STL files.

If you mean fix the STL files at source, then I guess that's up to Walter ...

"Wichetael" <wichetael@gmx.net> wrote in message news:bdq5ub$10i5$1@digitaldaemon.com...
> Uh, fix the code so that it always return a value... :p
>
> Sorry, couldn't help myself...
>
> Regards,
> Remko van der Vossen
>
> "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> > One other thing ... is there a way to do it in code?
> >
> > Thanks
> >
> > "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...
> > >
> > > >Is there a way to specify to the compiler to suppress certain
warnings?
> > >
> > > -w[errno]
> > >
> > > like -w18
> > >
> > > Richard
> > >
> > >
> >
> >
>
>


July 01, 2003
How about using STLport instead, I never had any problems with that myself.

Regards,
Remko van der Vossen.

"Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdqf4r$1aar$1@digitaldaemon.com...
> Doing that in my own code doesn't help anyone who then uses the same makefiles for their own downloaded versions of DMC++, with the flawed STL files.
>
> If you mean fix the STL files at source, then I guess that's up to Walter ...
>
> "Wichetael" <wichetael@gmx.net> wrote in message news:bdq5ub$10i5$1@digitaldaemon.com...
> > Uh, fix the code so that it always return a value... :p
> >
> > Sorry, couldn't help myself...
> >
> > Regards,
> > Remko van der Vossen
> >
> > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> > > One other thing ... is there a way to do it in code?
> > >
> > > Thanks
> > >
> > > "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > > > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson says...
> > > >
> > > > >Is there a way to specify to the compiler to suppress certain
> warnings?
> > > >
> > > > -w[errno]
> > > >
> > > > like -w18
> > > >
> > > > Richard
> > > >
> > > >
> > >
> > >
> >
> >
>
>


July 01, 2003
I do. However I'm currently writing test projects and makefiles for the next release of STLSoft, and they have to be compatible with all reasonable permutations of compilers/libraries.

"Wichetael" <wichetael@gmx.net> wrote in message news:bdr4jg$20vr$1@digitaldaemon.com...
> How about using STLport instead, I never had any problems with that
myself.
>
> Regards,
> Remko van der Vossen.
>
> "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdqf4r$1aar$1@digitaldaemon.com...
> > Doing that in my own code doesn't help anyone who then uses the same makefiles for their own downloaded versions of DMC++, with the flawed
STL
> > files.
> >
> > If you mean fix the STL files at source, then I guess that's up to
Walter
> > ...
> >
> > "Wichetael" <wichetael@gmx.net> wrote in message news:bdq5ub$10i5$1@digitaldaemon.com...
> > > Uh, fix the code so that it always return a value... :p
> > >
> > > Sorry, couldn't help myself...
> > >
> > > Regards,
> > > Remko van der Vossen
> > >
> > > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> > > > One other thing ... is there a way to do it in code?
> > > >
> > > > Thanks
> > > >
> > > > "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > > > > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson
says...
> > > > >
> > > > > >Is there a way to specify to the compiler to suppress certain
> > warnings?
> > > > >
> > > > > -w[errno]
> > > > >
> > > > > like -w18
> > > > >
> > > > > Richard
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>


July 01, 2003
Then don't support SGI's STL. Simple!

=P


"Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdr958$2572$1@digitaldaemon.com...
> I do. However I'm currently writing test projects and makefiles for the
next
> release of STLSoft, and they have to be compatible with all reasonable permutations of compilers/libraries.
>
> "Wichetael" <wichetael@gmx.net> wrote in message news:bdr4jg$20vr$1@digitaldaemon.com...
> > How about using STLport instead, I never had any problems with that
> myself.
> >
> > Regards,
> > Remko van der Vossen.
> >
> > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdqf4r$1aar$1@digitaldaemon.com...
> > > Doing that in my own code doesn't help anyone who then uses the same makefiles for their own downloaded versions of DMC++, with the flawed
> STL
> > > files.
> > >
> > > If you mean fix the STL files at source, then I guess that's up to
> Walter
> > > ...
> > >
> > > "Wichetael" <wichetael@gmx.net> wrote in message news:bdq5ub$10i5$1@digitaldaemon.com...
> > > > Uh, fix the code so that it always return a value... :p
> > > >
> > > > Sorry, couldn't help myself...
> > > >
> > > > Regards,
> > > > Remko van der Vossen
> > > >
> > > > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> > > > > One other thing ... is there a way to do it in code?
> > > > >
> > > > > Thanks
> > > > >
> > > > > "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > > > > > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson
> says...
> > > > > >
> > > > > > >Is there a way to specify to the compiler to suppress certain
> > > warnings?
> > > > > >
> > > > > > -w[errno]
> > > > > >
> > > > > > like -w18
> > > > > >
> > > > > > Richard
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>


July 01, 2003
STLSoft supports DMC++, and DMC++ supports SGI & STLport, so STLSoft must do also.

"Greg Peet" <admin@gregpeet.com> wrote in message news:bdt2r2$u2h$1@digitaldaemon.com...
> Then don't support SGI's STL. Simple!
>
> =P
>
>
> "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdr958$2572$1@digitaldaemon.com...
> > I do. However I'm currently writing test projects and makefiles for the
> next
> > release of STLSoft, and they have to be compatible with all reasonable permutations of compilers/libraries.
> >
> > "Wichetael" <wichetael@gmx.net> wrote in message news:bdr4jg$20vr$1@digitaldaemon.com...
> > > How about using STLport instead, I never had any problems with that
> > myself.
> > >
> > > Regards,
> > > Remko van der Vossen.
> > >
> > > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdqf4r$1aar$1@digitaldaemon.com...
> > > > Doing that in my own code doesn't help anyone who then uses the same makefiles for their own downloaded versions of DMC++, with the
flawed
> > STL
> > > > files.
> > > >
> > > > If you mean fix the STL files at source, then I guess that's up to
> > Walter
> > > > ...
> > > >
> > > > "Wichetael" <wichetael@gmx.net> wrote in message news:bdq5ub$10i5$1@digitaldaemon.com...
> > > > > Uh, fix the code so that it always return a value... :p
> > > > >
> > > > > Sorry, couldn't help myself...
> > > > >
> > > > > Regards,
> > > > > Remko van der Vossen
> > > > >
> > > > > "Matthew Wilson" <matthew@stlsoft.org> wrote in message news:bdnn63$17dq$1@digitaldaemon.com...
> > > > > > One other thing ... is there a way to do it in code?
> > > > > >
> > > > > > Thanks
> > > > > >
> > > > > > "Richard Grant" <fractal@clark.net> wrote in message news:bdn8nm$nr2$1@digitaldaemon.com...
> > > > > > > In article <bdlqba$2enr$1@digitaldaemon.com>, Matthew Wilson
> > says...
> > > > > > >
> > > > > > > >Is there a way to specify to the compiler to suppress certain
> > > > warnings?
> > > > > > >
> > > > > > > -w[errno]
> > > > > > >
> > > > > > > like -w18
> > > > > > >
> > > > > > > Richard
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>


« First   ‹ Prev
1 2