1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 09:11:47 +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:
Rebecca Turner 2024-03-04 09:32:02 -08:00
parent 14b0356dc5
commit 2e8f4faa10
No known key found for this signature in database

View file

@ -34,7 +34,7 @@ inline void formatHelper(F & f, const T & x, const Args & ... args)
/** /**
* Set the correct exceptions for `fmt`. * Set the correct exceptions for `fmt`.
*/ */
void setExceptions(boost::format & fmt) inline void setExceptions(boost::format & fmt)
{ {
fmt.exceptions( fmt.exceptions(
boost::io::all_error_bits ^ boost::io::all_error_bits ^