Skip to content

Commit b764902

Browse files
committed
Removed IO_Options. No longer supported.
1 parent 8fc6db2 commit b764902

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

stringify/jss_options.cpp

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,4 @@
22

33
namespace JSON
44
{
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-
if (!enabled) return;
17-
18-
ss << std::setfill(fill_char) << std::setbase(base);
19-
if (width != 0)
20-
ss << std::setw(width);
21-
ss << std::setiosflags(ioflags);
22-
}
23-
void IO_Options::apply(std::ostream&) const
24-
{
25-
return;
26-
}
275
}

0 commit comments

Comments
 (0)