blob: f8b936b48103822d5b503fb607831cafcc430f06 (
plain)
1
2
3
4
5
6
7
8
|
#![unstable(feature = "thread_local_internals", issue = "0")]
#![cfg(target_thread_local)]
pub use sys_common::thread_local::register_dtor_fallback as register_dtor;
pub fn requires_move_before_drop() -> bool {
false
}
|