We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fc6db2 commit b764902Copy full SHA for b764902
1 file changed
stringify/jss_options.cpp
@@ -2,26 +2,4 @@
2
3
namespace JSON
4
{
5
- void IO_Options::apply(std::stringstream& ss) const
6
- {
7
- if (!enabled) return;
8
-
9
- ss << std::setfill(fill_char) << std::setbase(base);
10
- if (width != 0)
11
- ss << std::setw(width);
12
- ss << std::setiosflags(ioflags);
13
- }
14
- void IO_Options::apply(std::ostringstream& ss) const
15
16
17
18
19
20
21
22
23
- void IO_Options::apply(std::ostream&) const
24
25
- return;
26
27
}
0 commit comments