blob: 4c98d13a0c1857edb1b9a6fa7629661c433d89dc [file] [log] [blame]
// Copyright 2018 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
macro_rules! impl_debug {
($type:ty, $str:expr) => {
impl ::std::fmt::Debug for $type {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
write!(f, $str)
}
}
};
}