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;
(missing assignment of b value)
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;
(missing assignment of b value)