Searched refs:copied_once (Results 1 – 1 of 1) sorted by relevance
351 mutable bool copied_once; member354 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable()357 copied_once = true; in CopyInsertable()362 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable()368 copied_once(true), in CopyInsertable()371 assert(other.copied_once == false); in CopyInsertable()372 other.copied_once = true; in CopyInsertable()375 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable()378 assert(other.copied_once == false); in CopyInsertable()379 other.copied_once = true; in CopyInsertable()[all …]