Searched refs:copied_once (Results 1 – 1 of 1) sorted by relevance
336 mutable bool copied_once; member339 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable()342 copied_once = true; in CopyInsertable()347 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable()353 copied_once(true), in CopyInsertable()356 assert(other.copied_once == false); in CopyInsertable()357 other.copied_once = true; in CopyInsertable()360 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable()363 assert(other.copied_once == false); in CopyInsertable()364 other.copied_once = true; in CopyInsertable()[all …]