Fix windows naming issue with assert

This commit is contained in:
Lion Kortlepel
2020-11-03 12:10:08 +01:00
parent e986df0579
commit 801ea3f777
9 changed files with 10 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
///
#define CURL_STATICLIB
#include "Curl/curl.h"
#include "Assert.h"
#include "CustomAssert.h"
#include <iostream>
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp){
((std::string*)userp)->append((char*)contents, size * nmemb);