File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
env :
17
17
GDEXT_FEATURES : ' '
18
+ # GDEXT_FEATURES: '--features godot/serde'
18
19
RETRY : ${{ github.workspace }}/.github/other/retry.sh
19
20
20
21
# LSan options: https://github.com/google/sanitizers/wiki/AddressSanitizerLeakSanitizer
Original file line number Diff line number Diff line change @@ -425,9 +425,4 @@ mod custom_callable {
425
425
w. name . clone ( ) . move_string_ptr ( r_out) ;
426
426
* r_is_valid = true as sys:: GDExtensionBool ;
427
427
}
428
-
429
- pub fn unqualified_type_name < T > ( ) -> & ' static str {
430
- let type_name = std:: any:: type_name :: < T > ( ) ;
431
- type_name. split ( "::" ) . last ( ) . unwrap ( )
432
- }
433
428
}
Original file line number Diff line number Diff line change @@ -138,6 +138,13 @@ pub fn hash_value<T: std::hash::Hash>(t: &T) -> u64 {
138
138
hasher. finish ( )
139
139
}
140
140
141
+ /*
142
+ pub fn unqualified_type_name<T>() -> &'static str {
143
+ let type_name = std::any::type_name::<T>();
144
+ type_name.split("::").last().unwrap()
145
+ }
146
+ */
147
+
141
148
// ----------------------------------------------------------------------------------------------------------------------------------------------
142
149
// Private helpers
143
150
You can’t perform that action at this time.
0 commit comments