Removed redundant calls that сause compilation nodiscard warnings. (#2251)

pull/2256/head
yuriio 4 years ago committed by GitHub
parent f42a6d23cc
commit eb1f08ce6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -509,7 +509,6 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = out.flags();
out.flags();
out << item << ' ';
out.flags(oldflags);
if (!out) throw serialization_error("Error serializing object of type bigint_kernel_c");
@ -521,8 +520,8 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = in.flags();
in.flags();
in >> item; in.flags(oldflags);
in >> item;
in.flags(oldflags);
if (in.get() != ' ')
{
item = 0;

@ -534,7 +534,6 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = out.flags();
out.flags();
out << item << ' ';
out.flags(oldflags);
if (!out) throw serialization_error("Error serializing object of type bigint_kernel_c");
@ -546,8 +545,8 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = in.flags();
in.flags();
in >> item; in.flags(oldflags);
in >> item;
in.flags(oldflags);
if (in.get() != ' ')
{
item = 0;

@ -253,7 +253,6 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = out.flags();
out.flags();
out << item << ' ';
out.flags(oldflags);
if (!out) throw serialization_error("Error serializing object of type bigint_kernel_c");
@ -268,8 +267,8 @@ namespace dlib
)
{
std::ios::fmtflags oldflags = in.flags();
in.flags();
in >> item; in.flags(oldflags);
in >> item;
in.flags(oldflags);
if (in.get() != ' ')
{
item = 0;

Loading…
Cancel
Save