Skip to content

Commit

Permalink
Inlined format_as functions
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelwa committed Jun 27, 2024
1 parent edc98bf commit 3eeb7d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/lorina/blif.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class blif_reader
* @param liv Latch init value.
* @return Underlying value of latch_init_value.
*/
auto format_as( blif_reader::latch_init_value liv ) { return fmt::underlying( liv ); }
inline auto format_as( blif_reader::latch_init_value liv ) { return fmt::underlying( liv ); }
/*!
* \brief Format a latch_type as string.
*
Expand All @@ -206,7 +206,7 @@ auto format_as( blif_reader::latch_init_value liv ) { return fmt::underlying( li
* @param lt Latch type.
* @return Underlying value of latch_type.
*/
auto format_as( blif_reader::latch_type lt ) { return fmt::underlying( lt ); }
inline auto format_as( blif_reader::latch_type lt ) { return fmt::underlying( lt ); }
/*! \brief A BLIF reader for prettyprinting BLIF.
*
* Callbacks for prettyprinting of BLIF.
Expand Down

0 comments on commit 3eeb7d1

Please sign in to comment.