summaryrefslogtreecommitdiff
path: root/src/callbacks.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/callbacks.rs')
-rw-r--r--src/callbacks.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/callbacks.rs b/src/callbacks.rs
index 81fe0c0e..91920738 100644
--- a/src/callbacks.rs
+++ b/src/callbacks.rs
@@ -37,8 +37,7 @@ pub trait ParseCallbacks: fmt::Debug + UnwindSafe {
/// This will be run on every string macro. The callback can not influence the further
/// treatment of the macro, but may use the value to generate additional code or configuration.
- fn str_macro(&self, _name: &str, _value: &[u8]) {
- }
+ fn str_macro(&self, _name: &str, _value: &[u8]) {}
/// This function should return whether, given an enum variant
/// name, and value, this enum variant will forcibly be a constant.