diff options
Diffstat (limited to 'src/components/layout/layout.rs')
-rw-r--r-- | src/components/layout/layout.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/layout/layout.rs b/src/components/layout/layout.rs index 51f82654323..a9ee00319f7 100644 --- a/src/components/layout/layout.rs +++ b/src/components/layout/layout.rs @@ -35,6 +35,9 @@ extern crate libc; extern crate sync; extern crate url; +// Listed first because of macro definitions +pub mod layout_debug; + pub mod block; pub mod construct; pub mod context; @@ -43,7 +46,6 @@ pub mod flow; pub mod flow_list; pub mod flow_ref; pub mod fragment; -pub mod layout_debug; pub mod layout_task; pub mod inline; pub mod model; |