Quantcast
Channel: WE MOVED to github.com/microsoft/cpprestsdk. This site is not monitored!
Viewing all articles
Browse latest Browse all 4845

Edited Unassigned: Invalid DAT macro for http::methods [317]

$
0
0
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
```

Viewing all articles
Browse latest Browse all 4845

Trending Articles