Skip to content
Snippets Groups Projects
  1. Dec 15, 2013
  2. Dec 03, 2013
  3. Nov 28, 2013
  4. Nov 27, 2013
  5. Nov 22, 2013
  6. Nov 20, 2013
  7. Nov 18, 2013
  8. Nov 15, 2013
  9. Nov 13, 2013
  10. Oct 30, 2013
  11. Oct 29, 2013
    • Martin Nolte's avatar
      [bugfix] Prohibit copy constructor of DenseVector · d8ec10b4
      Martin Nolte authored
      DenseVector is the base class of a CRTP. This is kind of an abstract
      class that works only if it can be casted into a derived type. Copying
      the base class is pointless.
      
      This patch marks the copy constructor of DenseVector private (not even
      implementing it), so that it cannot be called anymore. Once we have a
      DUNE_DELETE macro, we should use it, here.
      
      At the same time, the default constructor is marked protected, so that only
      derived classes can instantiate a DenseVector. Notice that this does not
      prevent the user from building a derivced class which does not pass
      itself as implementation to DenseVector. It is (to my knowledge) not possible
      to make CRTPs completely fail-safe.
      d8ec10b4
    • Dominic Kempf's avatar
      [Cmake] Prevent Headercheck from polluting the Cache · fd4572dd
      Dominic Kempf authored
      Cmake by default added a dependeny variable for each headercheck
      target. Given the amount of such targets and the fact, that these
      dependencies should not be changed by the user, this is unwanted
      behaviour. The patch fixes this by removing the variable from the
      cache.
      fd4572dd
  12. Oct 28, 2013
  13. Oct 24, 2013
Loading