remove argc and argv

This commit is contained in:
Andreas Fabri 2013-03-22 12:59:50 +01:00
parent 2ea287d62e
commit e4e209abaf
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ struct Cmp {
{ return (m_cmp_object(p1, p2) == CGAL::LARGER); }
};
int main(int argc, char* argv[])
int main()
{
// testing that all types are present:

View File

@ -99,7 +99,7 @@ special_warnings(const char *,
<< std::endl;
}
int main (int argc, char * argv[])
int main ()
{
std::cerr << "Modify the w-a-r-n-i-n-g-s handler...\n";
CGAL::set_warning_handler(special_warnings);