reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

unittests/ADT/StringMapTest.cpp
  283   struct A : CountCopyAndMove {

References

unittests/ADT/StringMapTest.cpp
   80   CountCopyAndMove(const CountCopyAndMove &) { copy = 1; }
   81   CountCopyAndMove(CountCopyAndMove &&) { move = 1; }
   82   void operator=(const CountCopyAndMove &) { ++copy; }
   83   void operator=(CountCopyAndMove &&) { ++move; }
  283   struct A : CountCopyAndMove {