Skip to content
Snippets Groups Projects
Commit 05f80960 authored by René Fritze's avatar René Fritze
Browse files

fix warnigns and missing headers

parent cfc5c3f3
No related branches found
No related tags found
No related merge requests found
#ifndef DUNE_STUFF_DEBUG_HH
#define DUNE_STUFF_DEBUG_HH
#include <cstring>
#define SEGFAULT \
{ \
int* J = 0; \
......
#ifndef DUNE_STUFF_MATH_HH
#define DUNE_STUFF_MATH_HH
#include <vector>
#include <limits>
#include <algorithm>
#include <cstring>
namespace Stuff {
/** \todo DOCME **/
......
......@@ -55,14 +55,14 @@ void* operator new[](unsigned long size, const char* file)
return p;
}
void operator delete(void* p)
void operator delete(void* p) throw()
{
// std::cout << "operator delete(" << p << ")" << std::endl;
free(p);
}
void operator delete[](void* p)
void operator delete[](void* p) throw()
{
// std::cout << "operator delete[](" << p << ")" << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment