mirror of https://github.com/CGAL/cgal
- kill unused variable warning.
This commit is contained in:
parent
f3a69c4d5f
commit
d4bd47041c
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ struct C {
|
|||
int main()
|
||||
{
|
||||
C< F > c;
|
||||
(void) c;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ struct C {
|
|||
int main()
|
||||
{
|
||||
C< F > c;
|
||||
(void) c;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue