Skip to content

Commit

Permalink
visual studio error fix + warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Feb 25, 2015
1 parent 91e871d commit a422e43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/client/HTTP.cpp
Expand Up @@ -72,6 +72,11 @@
#define PCLOSE close
#endif

#ifdef _MSC_VER
#include <BaseTsd.h> //for SSIZE_T
typedef SSIZE_T ssize_t;
#endif

char * userAgent;
static int http_up = 0;
static long http_timeout = 15;
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/Simulation.h
Expand Up @@ -20,7 +20,7 @@
class Snapshot;
class SimTool;
class Brush;
struct SimulationSample;
class SimulationSample;
struct matrix2d;
struct vector2d;

Expand Down

0 comments on commit a422e43

Please sign in to comment.