Skip to content
Snippets Groups Projects
  1. Dec 27, 2024
  2. Nov 08, 2024
  3. Jul 18, 2024
  4. Jul 09, 2024
  5. Jul 08, 2024
  6. Dec 13, 2023
  7. Dec 08, 2023
  8. Dec 04, 2023
  9. Dec 01, 2023
  10. Nov 30, 2023
  11. Sep 22, 2023
  12. Sep 20, 2023
  13. Jun 07, 2023
  14. May 25, 2023
  15. Apr 11, 2023
  16. Mar 16, 2023
  17. Jan 05, 2023
  18. Dec 14, 2022
  19. Sep 27, 2022
  20. Jul 20, 2022
  21. Jul 16, 2022
  22. Jun 24, 2022
  23. Jun 16, 2022
  24. Jun 08, 2022
  25. Jun 07, 2022
  26. May 18, 2022
    • Sébastien Villemot's avatar
      No longer delete move constructor/assignment operator · 27952078
      Sébastien Villemot authored
      We follow the advice given by Josuttis in his book about move semantics.
      
      Deleting those member fuctions can be a bug if we want to allow copy semantics,
      because overload resolution will no longer fallback to the copy
      constructor/assignment operator when given an rvalue.
      
      In particular, this explain why it was not possible to delete the move
      assignment operator of the StaticModel class.
      27952078
  27. May 04, 2022
Loading