From f588590b42eb047d5c8a4c579f28deb73abe858d Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Wed, 20 Jan 2021 11:47:32 +0100 Subject: [PATCH] disabled changes only necessary for benchmarks --- Cargo.toml | 2 +- editor/src/lib.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 777e51cf01..2d986f0009 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,6 +34,6 @@ members = [ [profile.release] lto = "fat" codegen-units = 1 -debug = true # enable when profiling +# debug = true # enable when profiling diff --git a/editor/src/lib.rs b/editor/src/lib.rs index cfdf2c6eb2..6ebfd8be74 100644 --- a/editor/src/lib.rs +++ b/editor/src/lib.rs @@ -46,12 +46,12 @@ pub mod error; pub mod graphics; mod keyboard_input; pub mod lang; -//mod mvc; -pub mod mvc; // for benchmarking +mod mvc; +//pub mod mvc; // for benchmarking mod resources; mod selection; -//mod text_buffer; -pub mod text_buffer; // for benchmarking +mod text_buffer; +//pub mod text_buffer; // for benchmarking mod util; mod vec_result;