remove debug output from code

This commit is contained in:
Markus Gans 2019-08-01 00:28:36 +02:00
parent 0e12be93cc
commit aac2231898
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ FSize& FSize::operator = (FSize&& s)
{
width = s.width;
height = s.height;
s.width = s.height = 0; std::cerr << " move operator\n";
s.width = s.height = 0;
return *this;
}

View File

@ -109,13 +109,13 @@ class FSize
inline FSize::FSize (const FSize& s) // copy constructor
: width(s.width)
, height(s.height)
{ std::cerr << " copy ctor\n";}
{ }
//----------------------------------------------------------------------
inline FSize::FSize (FSize&& s) // move constructor
: width(s.width)
, height(s.height)
{ s.width = s.height = 0; std::cerr << " move ctor\n";}
{ s.width = s.height = 0; }
//----------------------------------------------------------------------
inline FSize::FSize (std::size_t w, std::size_t h)