Merge pull request #11 from ryandesign/stdlib

Include stdlib.h where its functions are used
This commit is contained in:
Eric Lasota
2022-03-17 13:10:33 -04:00
committed by GitHub
3 changed files with 4 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
#include "GpThreadEvent_Cpp11.h"
#include <stdlib.h>
GpThreadEvent_Cpp11::GpThreadEvent_Cpp11(bool autoReset, bool startSignaled)
: m_flag(startSignaled)
, m_autoReset(autoReset)

View File

@@ -4,6 +4,7 @@
#include "GpApplicationName.h"
#include "GpIOStream.h"
#include <stdlib.h>
#include <time.h>
#include <cstring>

View File

@@ -10,6 +10,7 @@
#include "DeflateCodec.h"
#include <algorithm>
#include <stdlib.h>
namespace
{