Skip to content
Snippets Groups Projects

First unit tests

Merged Leon Dietrich requested to merge first_unit_tests into master
2 files
+ 7
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -11,6 +11,12 @@
@@ -11,6 +11,12 @@
#include <memory>
#include <memory>
#include <string>
#include <string>
 
#if EAGAIN != EWOULDBLOCK
 
#define EAGAIN_WRAPPER ((errno != EAGAIN) && (errno != EWOULDBLOCK))
 
#else
 
#define EAGAIN_WRAPPER (errno != EAGAIN)
 
#endif
 
namespace rmrf::net {
namespace rmrf::net {
template<class client>
template<class client>
Loading