- Feb 12, 2016
-
-
Oliver Sander authored
-
- Feb 11, 2016
-
-
Elias Pipping authored
-
- Feb 10, 2016
-
-
Elias Pipping authored
mprotect violations are required to lead to a SIGSEGV on Linux. OS X is more permissive, allowing for both SIGSEGV and SIGBUS. And practice, the tests generate a SIGBUS for me, causing the tests to fail. Confusingly, ctest describes the problem as Exception: SegFault which I assume they use as a catch-all term.
-
Elias Pipping authored
-
Elias Pipping authored
The combination of `posix_memalign` and `mprotect` does not work as expected on OS X, see also !43.
-
- Feb 08, 2016
-
-
René Heß authored
-
- Feb 07, 2016
-
-
Christoph Grüninger authored
-
Marco Agnese authored
-
Marco Agnese authored
-
Marco Agnese authored
-
- Feb 06, 2016
-
-
Christoph Grüninger authored
-
Christoph Grüninger authored
C++11 defaults destructors to noexcept. Good catch, GCC 6!
-
- Feb 02, 2016
-
-
Elias Pipping authored
-
- Feb 01, 2016
-
-
Elias Pipping authored
-
Elias Pipping authored
-
Elias Pipping authored
This addresses warnings such as 'const' type qualifier on return type has no effect
-
- Jan 31, 2016
-
-
Christoph Grüninger authored
-
- Jan 30, 2016
-
-
Elias Pipping authored
-
- Jan 29, 2016
-
-
Felix Gruber authored
-
- Jan 28, 2016
-
-
Elias Pipping authored
-
Elias Pipping authored
-
- Jan 26, 2016
-
-
I still don't understand why, but GCC was spilling deprecation warnings for Dune::enable_if even if we were only using std::enable_if. Thus I removed the deprecation of the enable_if struct and only deprecate the type within. That should still be enough as this deprecation warning gets triggered when enable_if is used to aid in overload resolution and the boolean parameter of enable_if is true.
-
My previous wrapper implementation around std::enable_if didn't work when B was false, as type was then defined to a type that was SFINAEd away.
-
Using inheritance for the deprecated wrapper class unfortunately only worked on GCC, so we had to define the type or value of the type trait explicitly to deprecate it.
-
Since we cannot deprecate using statements, I changed all using statements for std type traits into thin wrapper classes that I then deprecated.
-
This is not needed anymore, as the testet type traits are directly imported from std:: and can thus be assumed to be correct.
-
-
-
-
-
-
Is ConstVolatileTraits still used anywhere? I would propose to deprecate it and replace it with std::is_volatile, std::is_const, std::remove_cv, etc.
-
-
-
-
They can be replaced by std::is_base_of, std::is_const and std::is_volatile, respectively.
-
-
Now that we require a C++11-compliant compiler, we can use the std type traits to construct our own.
-
-
-