Skip to content

Commit 3e0876b

Browse files
roccoblueswaywardmonkeys
authored andcommitted
make clippy happy
1 parent afe1548 commit 3e0876b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/value.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -316,15 +316,15 @@ impl SBValue {
316316
self.id() as i32
317317
}
318318

319-
fn name() -> &str {
319+
fn name() -> Option<&str> {
320320
self.name()
321321
}
322322

323-
fn type_name() -> &str {
323+
fn type_name() -> Option<&str> {
324324
self.type_name()
325325
}
326326

327-
fn display_type_name() -> &str {
327+
fn display_type_name() -> Option<&str> {
328328
self.display_type_name()
329329
}
330330

0 commit comments

Comments
 (0)