Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/tinycsocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#ifndef TINYCSOCKET_INTERNAL_H_
#define TINYCSOCKET_INTERNAL_H_

static const char* const TCS_VERSION_TXT = "v0.3.66";
static const char* const TCS_VERSION_TXT = "v0.3.67";
static const char* const TCS_LICENSE_TXT =
"Copyright 2018 Markus Lindelöw\n"
"\n"
Expand Down
2 changes: 1 addition & 1 deletion src/tinycsocket_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#ifndef TINYCSOCKET_INTERNAL_H_
#define TINYCSOCKET_INTERNAL_H_

static const char* const TCS_VERSION_TXT = "v0.3.66";
static const char* const TCS_VERSION_TXT = "v0.3.67";
static const char* const TCS_LICENSE_TXT =
"Copyright 2018 Markus Lindelöw\n"
"\n"
Expand Down
70 changes: 0 additions & 70 deletions t

This file was deleted.

2 changes: 1 addition & 1 deletion tests/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static inline double log10(unsigned int x)
#define CHECK_NO_LEAK(pre) CHECK(TCS_MEM_DIFF() == (pre))
#else
#define TCS_MEM_DIFF() 0
#define CHECK_NO_LEAK(pre) ((void)0)
#define CHECK_NO_LEAK(pre) ((void)(pre))
#endif

int main(int argc, char** argv)
Expand Down
Loading