mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
Fix build
Not sure why that was giving a duplicate symbol error, or why marking it inline fixes it. Here it is!
This commit is contained in:
parent
14b0356dc5
commit
2e8f4faa10
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ inline void formatHelper(F & f, const T & x, const Args & ... args)
|
|||
/**
|
||||
* Set the correct exceptions for `fmt`.
|
||||
*/
|
||||
void setExceptions(boost::format & fmt)
|
||||
inline void setExceptions(boost::format & fmt)
|
||||
{
|
||||
fmt.exceptions(
|
||||
boost::io::all_error_bits ^
|
||||
|
|
Loading…
Reference in a new issue