Skip to content

Commit 09faa6b

Browse files
authored
fixed compilation error on nightly (#1) (#3856)
fixed compilation error in leptos_macro on nightly
1 parent 0944ffe commit 09faa6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leptos_macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ fn normalized_call_site(site: proc_macro::Span) -> Option<String> {
357357
cfg_if::cfg_if! {
358358
if #[cfg(all(debug_assertions, feature = "nightly"))] {
359359
Some(leptos_hot_reload::span_to_stable_id(
360-
site.file().path(),
360+
site.file(),
361361
site.start().line()
362362
))
363363
} else {

0 commit comments

Comments
 (0)