From ee3f81fa31e39a8ae4ebcfe5b3d78f2dbc103e1b Mon Sep 17 00:00:00 2001 From: theoreticalbts Date: Tue, 15 Mar 2016 15:58:02 -0400 Subject: [PATCH] Fix build broken by previous patch #592 --- libraries/wallet/wallet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 5b5d6138..59a50829 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -2183,7 +2183,8 @@ public: //ss << n; if (abs( round( n ) - n ) < 0.00000000001 ) { - ss << setiosflags( !ios::fixed ) << (int) n; + //ss << setiosflags( !ios::fixed ) << (int) n; // doesn't compile on Linux with gcc + ss << (int) n; } else if (n - floor(n) < 0.000001) {