forked from dogecoin/dogecoin
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary sstream header from univalue.h
sstream is not needed in the header. If there needs to be stream objects as member variables of classes, header iosfwd should be included to make the compilation time of the dependant headers faster by removing unnecessary preprocessing.
- Loading branch information
Heikki Hellgren
committed
Oct 2, 2018
1 parent
88967f6
commit 66e0ade
Showing
2 changed files
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
#include <vector> | ||
#include <limits> | ||
#include <string> | ||
#include <sstream> | ||
|
||
#include "univalue.h" | ||
|
||
|