build: fix license compile errors on windows
This commit is contained in:
@@ -50,7 +50,7 @@ void License::createHeader(
|
|||||||
const std::string& user,
|
const std::string& user,
|
||||||
const std::string& type,
|
const std::string& type,
|
||||||
const std::string& expiration,
|
const std::string& expiration,
|
||||||
uint seats
|
unsigned int seats
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (user.empty() || type.empty() || expiration.empty())
|
if (user.empty() || type.empty() || expiration.empty())
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ public:
|
|||||||
const std::string& user,
|
const std::string& user,
|
||||||
const std::string& type,
|
const std::string& type,
|
||||||
const std::string& expiration,
|
const std::string& expiration,
|
||||||
uint seats = 0
|
unsigned int seats = 0
|
||||||
);
|
);
|
||||||
std::string getExpireLine() const;
|
std::string getExpireLine() const;
|
||||||
|
|
||||||
@@ -114,7 +114,7 @@ private:
|
|||||||
// message
|
// message
|
||||||
std::string m_user;
|
std::string m_user;
|
||||||
std::string m_type;
|
std::string m_type;
|
||||||
uint m_seats;
|
unsigned int m_seats;
|
||||||
std::string m_expire;
|
std::string m_expire;
|
||||||
std::string m_hashLine;
|
std::string m_hashLine;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user