• burrito82@feddit.de
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    What can you do? Declare the move constructor, but don’t implement it.

    This sounds like a solution that warrants a big huge comment or the next guy to refactor will remove it and break stuff…

    • caleb-vincent@kbin.social
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      That’s how we would have to do non-copyable classes before C++11. Older code bases are still filled with unimplemented copy constructors and assignment operators with comments. If you were extra thorough they’d also be private. PC Lint hated both of those tactics.