- kill unused variable warning.

This commit is contained in:
Sylvain Pion 2002-04-27 00:54:17 +00:00
parent f3a69c4d5f
commit d4bd47041c
3 changed files with 7 additions and 6 deletions

View File

@ -1,10 +1,9 @@
- kill unused variable warning.
2.31
----------
Added a function test in the CGAL_NO_TMPL_IN_TMPL_PARAM.C.
template < template < class T > class HDS>
void fct(HDS<int> h1 ) { // here it does not compile }
- Added a function test in the CGAL_NO_TMPL_IN_TMPL_PARAM.C.
template < template < class T > class HDS>
void fct(HDS<int> h1 ) { // here it does not compile }
2.30
- Fixed STLport include (not for VC7) as suggested by Radu.

View File

@ -53,6 +53,7 @@ struct C {
int main()
{
C< F > c;
(void) c;
return 0;
}

View File

@ -53,6 +53,7 @@ struct C {
int main()
{
C< F > c;
(void) c;
return 0;
}