build: fix license compile errors on windows

This commit is contained in:
malte_langkabel
2017-06-19 16:15:02 +02:00
parent e953b35c62
commit fba8dadee7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ void License::createHeader(
const std::string& user,
const std::string& type,
const std::string& expiration,
uint seats
unsigned int seats
)
{
if (user.empty() || type.empty() || expiration.empty())
+2 -2
View File
@@ -68,7 +68,7 @@ public:
const std::string& user,
const std::string& type,
const std::string& expiration,
uint seats = 0
unsigned int seats = 0
);
std::string getExpireLine() const;
@@ -114,7 +114,7 @@ private:
// message
std::string m_user;
std::string m_type;
uint m_seats;
unsigned int m_seats;
std::string m_expire;
std::string m_hashLine;