diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2014-09-05 08:37:42 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-09-05 09:41:43 +1000 |
commit | a0854080ccbcdd1e1af7ef35e04865a436fb70be (patch) | |
tree | 521dded4ce53e6299027943c6ecc4ffde22a4071 /src/components/layout/layout.rs | |
parent | acedb166707aa2e8fd02e6c7d943147394c34609 (diff) | |
download | servo-a0854080ccbcdd1e1af7ef35e04865a436fb70be.tar.gz servo-a0854080ccbcdd1e1af7ef35e04865a436fb70be.zip |
Change scope macro to be a no-op in release builds.
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; |