https://casablanca.codeplex.com/SourceControl/latest#Release/include/cpprest/http_msg.h
```
class methods
{
public:
#define _METHODS
#define DAT(a,b) _ASYNCRTIMP const static method a;
#include "cpprest/http_constants.dat"
#undef _METHODS
#undef DAT
};
```
Should be
```
#define DAT(a,b) _ASYNCRTIMP const static method a=b; //note the assignment of b to a
```
```
class methods
{
public:
#define _METHODS
#define DAT(a,b) _ASYNCRTIMP const static method a;
#include "cpprest/http_constants.dat"
#undef _METHODS
#undef DAT
};
```
Should be
```
#define DAT(a,b) _ASYNCRTIMP const static method a=b; //note the assignment of b to a
```