Skip to content
Snippets Groups Projects
  1. Sep 29, 2014
    • Dominic Kempf's avatar
      Add binaryfunctions.hh as an include to CollectiveCommunication · 05f43148
      Dominic Kempf authored
      CollectiveCommunication serves as a fallback implementation, when
      code that is written for parallel computations is executed in sequential.
      The template parameters BinaryFunctions are no-op then, but they are
      still there to define the interface. However, in a generic (parallel)
      implementation these will be given. Including binaryfunctions.hh here
      avoids error messages due to no-op template parameters whose names
      could not be found by the compiler.
      05f43148
  2. Sep 24, 2014
    • Christoph Gersbacher's avatar
      [integer sequence] implement backwards compatible version of integer_sequence · e469a2fb
      Christoph Gersbacher authored
      C++14 will introduce integer/index sequences in the header <utility>.
      This patch introduces a backwards compatible implementation similar in
      use. However, the implementation differs in the following technical
      details:
      
        - index_sequence is not a template alias for integer_sequence but
        inherits from it
      
        - make_{integer, index}_sequence are not a template aliases but free
        standing functions
      
      Both differences stem from the absence of template aliases introduced in
      GCC aa late as gcc-4.7. This implementation will work in gcc-4.4 and
      later.
      e469a2fb
  3. Sep 23, 2014
  4. Sep 15, 2014
  5. Sep 10, 2014
    • Martin Nolte's avatar
      [bugfix] add missing include visibility.hh · 2309b953
      Martin Nolte authored
      When using DUNE_EXPORT, you need to include visibility.hh. This was
      omitted when adding this flag to the Singleton class in singleton.hh.
      This patch adds the missing include.
      2309b953
  6. Sep 08, 2014
  7. Aug 29, 2014
    • Christoph Grüninger's avatar
      Reduce number of warnings. · 6bbf986b
      Christoph Grüninger authored
      nullptr-test.cc: Move semicolon to own line to prevent
      Clang warning.
      typetraitstest.cc: Exclude use of deprecated types
      PointeeType and ReferredType with
      DISABLE_DEPRECATED_METHOD_CHECKS defined.
      6bbf986b
  8. Aug 18, 2014
    • Andreas Lauser's avatar
      parameter tree parser: do not try to access the first character of empty strings · fe8cb3dc
      Andreas Lauser authored
      funnily enough, this usually worked (i.e. it returned some garbage
      which was not recognized by the switch statement that followed), and
      was not detected by valgrind (on my machine at least, I suppose this
      was because the address to which the string pointed was still a valid
      memory location created by some previous user). The libstdc++ debug
      mode (-D_GLIBCXX_DEBUG=1 -D_GLIBCXX_DEBUG_PEDANTIC=1) did find it
      though...
      fe8cb3dc
  9. Jul 17, 2014
  10. Jul 16, 2014
  11. Jul 07, 2014
  12. Jul 06, 2014
  13. Jul 04, 2014
    • Andreas Nüßing's avatar
      [duneproject] fix section name in generation of config.h.cmake · f9e3fbf6
      Andreas Nüßing authored and Christoph Grüninger's avatar Christoph Grüninger committed
      When creating a project and generating the config.h.cmake file, duneproject
      surrounds the inserted text with {begin,end} $NAME. $NAME is set to $PROJECT
      without a leading "dune[-_]" and $PROJECT is the module name specified by the
      user (e.g. $PROJECT==dune-grid, $NAME==grid).
      When DuneMacro.cmake generates the config.h.cmake for the created project in
      the build-directory, it searches the config.h.cmake file in the source
      directory of the project for {begin,end} $ProjectName which is set to
      DUNE_MOD_NAME, which is the module name specified in the corresponding
      dune.module file (e.g. dune-grid).
      This leads to DuneMacro not finding and therefore ignoring the block in the
      source config.h.cmake of the new project.
      f9e3fbf6
  14. Jun 30, 2014
    • Tobias Malkmus's avatar
      [bugfix] add move semantics to DynamicVector · f19517d7
      Tobias Malkmus authored
      Gcc 4.6 cannot generate default move constructor for classes containing a
      DynamicVector because there is no move constructor and the copy constructor
      is non-trivial.
      This patch fixes this, by adding move semantics.
      f19517d7
  15. Jun 24, 2014
    • Markus Blatt's avatar
      [dunecontrol] Fixes error with installed old DUNE modules · 099ad827
      Markus Blatt authored
      If duncontrol detects an installed dune-common module, then it always
      assumed that it contains a lib/dunecontrol
      subdirectory. Unfortunately, this does not hold for older dune-common
      modules and dunecontrol will error out later with a message like
      
      /usr/local/lib/dunecontrol: file not found
      Execution of dunecontrol terminated due to errors!
      
      With this commit we fix this by actually checking whether the
      lib/dunecontrol subdirectoy exists before adding it to
      DUNE_CONTROL_PATH.
      
      Thanks a lot to wuhao sife for reporting this problem.
      099ad827
  16. Jun 23, 2014
  17. Jun 22, 2014
  18. Jun 03, 2014
  19. May 22, 2014
  20. May 20, 2014
  21. May 15, 2014
  22. May 14, 2014
  23. May 11, 2014
  24. May 02, 2014
  25. May 01, 2014
  26. Apr 28, 2014
Loading