Re-export debug macros from the debug module

This makes it easy to import just the macros without having to use the
oldschool `#[macro_use] extern crate ...;` syntax.
This commit is contained in:
Robbert van der Helm
2022-04-30 02:10:54 +02:00
parent 3d454bfc9c
commit 98876670f8
9 changed files with 20 additions and 18 deletions

View File

@@ -14,6 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use nih_plug::debug::*;
use std::f32::consts;
use std::ops::{Add, Mul, Sub};

View File

@@ -14,9 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#[macro_use]
extern crate nih_plug;
use nih_plug::prelude::*;
use std::sync::Arc;