kyoshimi

Results 2 issues of kyoshimi

I needed to change the code lines in utils.cc as written below. Are these changes valid? ```c++ # ifdef _MSC_VER --- time_t t; +++ time_t t = currTime->tv_sec; # if...

In the definition of copy constructor and assignment operator of class License, I needed to add code lines for `m_authoritySignature` respectively. Are the following modifications valid? ```c++ License::License(const License& other):...