Skip to content
Snippets Groups Projects
  1. Jun 28, 2024
  2. Nov 27, 2023
  3. Oct 25, 2023
  4. Mar 17, 2023
  5. Oct 28, 2022
  6. Jul 27, 2022
  7. Jul 19, 2022
  8. Jul 14, 2022
  9. Jul 11, 2022
  10. Mar 01, 2022
    • Daniel Lindblad's avatar
      Updated Copy Assignment in PushBackFunctor · c544741f
      Daniel Lindblad authored
      Since the copy assignment operator (operator=) was already designed
      to not allow assignment, it has been explicitly deleted. This way,
      there is no risk that copy assignment happens. With this change,
      the code compiles on ARCHER2 with Cray build environment.
      
      There should be no risk that this commit changes the behaviour of
      the code, since we only removed a function. If this function would
      have been used before, the code would not have compiled.
      
      The compiler still generates an implicit move assignment operator,
      copy constructor, and move constructor. These can not be deleted
      (if this is done, the code does not compile, indicating that they
      are used somewhere). Since these operators are not explicitly defined,
      we can't say for sure that the constructors and move assignment
      operators do what we excpect them to do.
      c544741f
  11. Nov 14, 2019
  12. Sep 25, 2019
  13. Sep 24, 2019
  14. Aug 07, 2019
  15. Jan 17, 2018
  16. Jan 16, 2018
  17. Dec 24, 2017
  18. Sep 22, 2017
  19. Sep 20, 2017
Loading